Skip to content

Commit a0196fe

Browse files
sanityclaude
andcommitted
fix: change implementation-detail logs from info to debug
These are internal routing details useful for debugging, not significant events that warrant info-level visibility. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent bf4a6c5 commit a0196fe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

crates/core/src/operations/subscribe.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ impl Operation for SubscribeOp {
364364
}
365365
Ok(None) => {
366366
// new request to subscribe to a contract, initialize the machine
367-
tracing::info!(
367+
tracing::debug!(
368368
tx = %id,
369369
?source_addr,
370370
"subscribe: load_or_init creating new op with source_addr as upstream_addr"
@@ -533,7 +533,7 @@ impl Operation for SubscribeOp {
533533
subscribed: true,
534534
};
535535

536-
tracing::info!(
536+
tracing::debug!(
537537
tx = %id,
538538
%key,
539539
upstream_addr = ?self.upstream_addr,
@@ -1000,7 +1000,7 @@ fn build_op_result(
10001000
_ => msg.as_ref().and_then(|m| m.target_addr()),
10011001
};
10021002

1003-
tracing::info!(
1003+
tracing::debug!(
10041004
tx = %id,
10051005
msg_type = ?msg.as_ref().map(|m| std::any::type_name_of_val(m)),
10061006
?upstream_addr,

0 commit comments

Comments
 (0)