Skip to content

Commit

Permalink
chore: make some source log debug instead of info (#14225)
Browse files Browse the repository at this point in the history
  • Loading branch information
lmatz authored Jan 2, 2024
1 parent b38da9c commit 7c84d06
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/stream/src/executor/source/fs_source_executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ impl<S: StateStore> FsSourceExecutor<S> {
// init in-memory split states with persisted state if any
self.stream_source_core.init_split_state(boot_state.clone());
let recover_state: ConnectorState = (!boot_state.is_empty()).then_some(boot_state);
tracing::info!(actor_id = self.actor_ctx.id, state = ?recover_state, "start with state");
tracing::debug!(actor_id = self.actor_ctx.id, state = ?recover_state, "start with state");

let source_chunk_reader = self
.build_stream_source_reader(&source_desc, recover_state)
Expand Down
4 changes: 2 additions & 2 deletions src/stream/src/executor/source/source_executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ impl<S: StateStore> SourceExecutor<S> {
..
}) => {
if let Some(splits) = splits.get(&self.actor_ctx.id) {
tracing::info!(
tracing::debug!(
"source exector: actor {:?} boot with splits: {:?}",
self.actor_ctx.id,
splits
Expand Down Expand Up @@ -414,7 +414,7 @@ impl<S: StateStore> SourceExecutor<S> {
self.stream_source_core = Some(core);

let recover_state: ConnectorState = (!boot_state.is_empty()).then_some(boot_state);
tracing::info!(actor_id = self.actor_ctx.id, state = ?recover_state, "start with state");
tracing::debug!(actor_id = self.actor_ctx.id, state = ?recover_state, "start with state");
let source_chunk_reader = self
.build_stream_source_reader(&source_desc, recover_state)
.instrument_await("source_build_reader")
Expand Down

0 comments on commit 7c84d06

Please sign in to comment.