From 2122b65e84616eaf0a0e61cf6041fafa8b2cb65a Mon Sep 17 00:00:00 2001 From: Zoltan Papp Date: Thu, 14 Aug 2025 12:24:22 +0200 Subject: [PATCH] Change log level from Debug to Warn for candidate gathering failure --- client/internal/peer/worker_ice.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/internal/peer/worker_ice.go b/client/internal/peer/worker_ice.go index d5c6f842e..a54b9e603 100644 --- a/client/internal/peer/worker_ice.go +++ b/client/internal/peer/worker_ice.go @@ -233,7 +233,7 @@ func (w *WorkerICE) SessionID() ICESessionID { func (w *WorkerICE) connect(ctx context.Context, agent *ice.Agent, remoteOfferAnswer *OfferAnswer) { w.log.Debugf("gather candidates") if err := agent.GatherCandidates(); err != nil { - w.log.Debugf("failed to gather candidates: %s", err) + w.log.Warnf("failed to gather candidates: %s", err) return }