From 7b1535073bdcc4188ef5c1ed687fbff3b8c0350a Mon Sep 17 00:00:00 2001 From: viown <48097677+viown@users.noreply.github.com> Date: Sun, 8 Sep 2024 15:24:20 +0300 Subject: [PATCH] add log message --- src/scripts/autocast.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/scripts/autocast.js b/src/scripts/autocast.js index 2c70e42c6f..65d7b19de7 100644 --- a/src/scripts/autocast.js +++ b/src/scripts/autocast.js @@ -45,6 +45,7 @@ function onOpen() { } export function initialize() { + console.debug('[autoCast] initializing connection listener'); ServerConnections.getApiClients().forEach(apiClient => { Events.off(apiClient, 'websocketopen', onOpen); Events.on(apiClient, 'websocketopen', onOpen);