From 5bc727804fb23e465f6cb82e67befba9446f8e72 Mon Sep 17 00:00:00 2001 From: paweldomas Date: Fri, 21 Oct 2016 10:17:01 -0500 Subject: [PATCH] fix(PageReloadOverlay): do not log message every second --- modules/UI/reload_overlay/PageReloadOverlay.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/UI/reload_overlay/PageReloadOverlay.js b/modules/UI/reload_overlay/PageReloadOverlay.js index 1806ce209..cf58e67b2 100644 --- a/modules/UI/reload_overlay/PageReloadOverlay.js +++ b/modules/UI/reload_overlay/PageReloadOverlay.js @@ -70,7 +70,6 @@ function start(timeoutSeconds) { if (timeLeft >= 1) { timeLeft -= 1; - console.info("Reloading in " + timeLeft + " seconds..."); } updateDisplay(); @@ -80,6 +79,9 @@ function start(timeoutSeconds) { APP.ConferenceUrl.reload(); } }, 1000); + + console.info( + "The conference will be reloaded after " + timeLeft + " seconds."); } export default {