From 229cd4044ca4cf4eb156a096b4f8c45201613192 Mon Sep 17 00:00:00 2001 From: Sergey Stepanov Date: Mon, 24 Apr 2023 14:16:25 +0300 Subject: [PATCH] Fix broken warning in the wrtc js module --- web/js/network/webrtc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/js/network/webrtc.js b/web/js/network/webrtc.js index 218e9e75..4a3d3605 100644 --- a/web/js/network/webrtc.js +++ b/web/js/network/webrtc.js @@ -85,7 +85,7 @@ const webrtc = (() => { case 'gathering': log.info('[rtc] ice gathering'); timeForIceGathering = setTimeout(() => { - log.warning(`[rtc] ice gathering was aborted due to timeout ${ICE_TIMEOUT}ms`); + log.warn(`[rtc] ice gathering was aborted due to timeout ${ICE_TIMEOUT}ms`); // sendCandidates(); }, ICE_TIMEOUT); break;