From 0dcb0465766b9719ddb85ef52c8d335243612166 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C4=99drzej=20Stuczy=C5=84ski?= Date: Wed, 2 Jun 2021 12:48:28 +0100 Subject: [PATCH] Changed omitted print to a debug call (#617) --- common/mixnode-common/src/rtt_measurement/listener.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); }