Changed omitted print to a debug call (#617)
This commit is contained in:
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));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user