Changed omitted print to a debug call (#617)

This commit is contained in:
Jędrzej Stuczyński
2021-06-02 12:48:28 +01:00
committed by GitHub
parent 5288510979
commit 0dcb046576
@@ -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));
}