Downgrade an error to debug

This commit is contained in:
Igor Katson 2023-12-05 22:24:22 +00:00
parent b224ed2397
commit 156f83dbee
No known key found for this signature in database
GPG key ID: B4EC22B66D61A3F5

View file

@ -564,7 +564,7 @@ impl Session {
futs.push( futs.push(
self.check_incoming_connection(addr, stream) self.check_incoming_connection(addr, stream)
.map_err(|e| { .map_err(|e| {
error!("error checking incoming connection: {e:#}"); debug!("error checking incoming connection: {e:#}");
e e
}) })
.instrument(error_span!("incoming", addr=%addr)) .instrument(error_span!("incoming", addr=%addr))