Demote webrtc conn error logging level to debug

Fixes #716.
This commit is contained in:
Matt Joiner 2022-06-01 18:18:37 +10:00
parent ed1fe91dd2
commit f21aeed90e
No known key found for this signature in database
GPG Key ID: 6B990B8185E7F782
1 changed files with 1 additions and 1 deletions

View File

@ -1598,7 +1598,7 @@ func (t *Torrent) onWebRtcConn(
defer t.cl.unlock()
err = t.cl.runHandshookConn(pc, t)
if err != nil {
t.logger.WithDefaultLevel(log.Critical).Printf("error running handshook webrtc conn: %v", err)
t.logger.WithDefaultLevel(log.Debug).Printf("error running handshook webrtc conn: %v", err)
}
}