Skip to content

Commit

Permalink
add trace logs
Browse files Browse the repository at this point in the history
  • Loading branch information
hzxa21 committed Dec 18, 2024
1 parent 6d95206 commit 11e522e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/connector/src/sink/log_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -557,6 +557,11 @@ impl<R: LogReader> LogReader for RateLimitedLogReader<R> {
break;
}
}
tracing::trace!(
"rate limited log store reader truncate offset {:?}, downstream offset {:?}",
truncate_offset,
offset
);
if let Some(offset) = truncate_offset {
self.core.inner.truncate(offset)
} else {
Expand Down

0 comments on commit 11e522e

Please sign in to comment.