Explorar el Código

outbound_session: bring outbound connection failed debug message to info level

draoi hace 1 año
padre
commit
2ef730e4ee
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/net/session/outbound_session.rs

+ 1 - 1
src/net/session/outbound_session.rs

@@ -311,7 +311,7 @@ impl Slot {
             let (addr, channel) = match self.try_connect(host.clone(), last_seen).await {
             let (addr, channel) = match self.try_connect(host.clone(), last_seen).await {
                 Ok(connect_info) => connect_info,
                 Ok(connect_info) => connect_info,
                 Err(err) => {
                 Err(err) => {
-                    debug!(
+                    info!(
                         target: "net::outbound_session::try_connect()",
                         target: "net::outbound_session::try_connect()",
                         "[P2P] Outbound slot #{} connection failed: {}",
                         "[P2P] Outbound slot #{} connection failed: {}",
                         slot, err
                         slot, err