fix: a log typo

This commit is contained in:
Yujia Qiao 2022-01-07 21:43:55 +08:00 committed by Yujia Qiao
parent ca1432ef6c
commit 744590370f
1 changed files with 1 additions and 1 deletions

View File

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