Browse Source

fix: a log typo

Yujia Qiao 4 years ago
parent
commit
744590370f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/server.rs

+ 1 - 1
src/server.rs

@@ -317,7 +317,7 @@ async fn do_data_channel_handshake<T: 'static + Transport>(
     control_channels: Arc<RwLock<ControlChannelMap<T>>>,
     nonce: Nonce,
 ) -> Result<()> {
-    info!("New control channel incoming");
+    debug!("New data channel incoming");
 
     // Validate
     let control_channels_guard = control_channels.read().await;