diff --git a/client/internal/peer/conn.go b/client/internal/peer/conn.go index 0b7be7cf8..d6726589f 100644 --- a/client/internal/peer/conn.go +++ b/client/internal/peer/conn.go @@ -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 }