Change log

This commit is contained in:
Zoltan Papp 2024-07-26 13:37:53 +02:00
parent d70df99f7b
commit 9ee062b4d1

View File

@ -313,8 +313,11 @@ func (conn *Conn) reconnectLoopWithRetry() {
return
}
if conn.statusRelay == StatusDisconnected || conn.statusICE == StatusDisconnected {
conn.log.Tracef("ticker timedout, relay state: %s, ice state: %s", conn.statusRelay, conn.statusICE)
}
// checks if there is peer connection is established via relay or ice
conn.log.Tracef("ticker timedout, relay state: %s, ice state: %s", conn.statusRelay, conn.statusICE)
if conn.isConnected() {
continue
}