diff --git a/zebrad/src/commands/start.rs b/zebrad/src/commands/start.rs index 8b2a1a9e..c25ea55e 100644 --- a/zebrad/src/commands/start.rs +++ b/zebrad/src/commands/start.rs @@ -54,7 +54,7 @@ impl StartCmd { // The service that our node uses to respond to requests by peers let node = Buffer::new( service_fn(|req| async move { - info!(?req); + debug!(?req, "inbound peer request"); Ok::(zebra_network::Response::Nil) }), 1,