Downgrade harmless log message from info to debug (#5403)

This commit is contained in:
Jon Häggblad
2025-01-30 13:36:06 +01:00
committed by GitHub
parent 8f48ae08c4
commit d62bc0a10b
@@ -632,7 +632,7 @@ impl MixnetListener {
}
} else {
// If the client is not connected, just drop the packet silently
log::info!("dropping packet from mixnet: no registered client for packet with source: {src_addr}");
log::debug!("dropping packet from mixnet: no registered client for packet with source: {src_addr}");
Ok(None)
}
}