Skip to content

Commit

Permalink
pool: remove tracing features
Browse files Browse the repository at this point in the history
Signed-off-by: Yuki Kishimoto <[email protected]>
  • Loading branch information
yukibtc committed Dec 6, 2024
1 parent 6076d2c commit a9e00af
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion crates/nostr-relay-pool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ nostr-database.workspace = true
thiserror.workspace = true
tokio = { workspace = true, features = ["macros", "sync"] }
tokio-stream = "0.1"
tracing = { workspace = true, features = ["std", "attributes"] }
tracing.workspace = true

[dev-dependencies]
nostr-relay-builder.workspace = true
Expand Down
1 change: 0 additions & 1 deletion crates/nostr-relay-pool/src/relay/inner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -927,7 +927,6 @@ impl InnerRelay {
}
}

#[tracing::instrument(skip_all, level = "trace")]
async fn handle_relay_message(&self, msg: &str) -> Result<Option<RelayMessage>, Error> {
let size: usize = msg.len();

Expand Down

0 comments on commit a9e00af

Please sign in to comment.