From 3f214f6a7db72dce3418cd37c7b2644e48c19f56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Sat, 19 Sep 2020 00:18:07 +0300 Subject: [PATCH] Remove some debug output from JavaScript --- server/static/scripts.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/server/static/scripts.js b/server/static/scripts.js index c9d7584..d9d3395 100644 --- a/server/static/scripts.js +++ b/server/static/scripts.js @@ -89,7 +89,6 @@ function updateRooms() { }); if (playing_room && !found_playing_room) { - console.debug('playing room disappeared'); pauseRoom(); } @@ -104,7 +103,6 @@ function playRoom(id) { if (playing_room != null && playing_room != id) { pauseRoom(); } - console.debug('playing ' + id); playing_room = id; connectWebsocket(); @@ -121,8 +119,6 @@ function pauseRoom() { return; } - console.debug('pausing ' + playing_room); - audio_player.srcObject = null; if (peer_connection != null) { -- GitLab