Explorar el Código

net/channel: changed outgoing metering log target to debug to reduce log bloat

skoupidi hace 1 año
padre
commit
a783ae6cf3
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/net/channel.rs

+ 1 - 1
src/net/channel.rs

@@ -241,7 +241,7 @@ impl Channel {
         // Check if we need to sleep
         if let Some(sleep_time) = sleep_time {
             let sleep_time = 2 * sleep_time;
-            warn!(
+            debug!(
                 target: "net::channel::send()",
                 "[P2P] Channel rate limit is active, sleeping before sending for: {} (ms)",
                 sleep_time,