diff --git a/common/mixnode-common/src/rtt_measurement/listener.rs b/common/mixnode-common/src/rtt_measurement/listener.rs index fad4e27ba1..00ea7616f0 100644 --- a/common/mixnode-common/src/rtt_measurement/listener.rs +++ b/common/mixnode-common/src/rtt_measurement/listener.rs @@ -58,7 +58,7 @@ impl PacketListener { match listener.accept().await { Ok((socket, remote_addr)) => { - println!("new connection from {}", remote_addr); + debug!("New verloc connection from {}", remote_addr); tokio::spawn(connection_handler.handle_connection(socket, remote_addr)); }