From 66da3a7c871a55d13807c137b9f8d13654b46267 Mon Sep 17 00:00:00 2001 From: Paulin Jorys Date: Tue, 11 Jul 2017 16:03:34 +0200 Subject: [PATCH] Quick fix: Updated the remote audio storage log --- static/js/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/index.js b/static/js/index.js index 7779e30..2b2f6a3 100644 --- a/static/js/index.js +++ b/static/js/index.js @@ -748,7 +748,7 @@ function saveRemoteAudio() { // checking the new state setTimeout(function() { var remoteAudioState = $("#remoteAudioEnabledSwitch").parent().hasClass('is-checked'); - console.log('saving remote audio state : ' + remoteAudioState); + console.log('[index.js, saveRemoteAudio]', 'color: green;', 'Saving remote audio state : ' + remoteAudioState); storeData('remoteAudio', remoteAudioState, null); }, 100); }