From 45d480445e2a6dbc688c57d55af33b5b6359a688 Mon Sep 17 00:00:00 2001 From: IgorA100 Date: Thu, 3 Apr 2025 13:58:41 +0300 Subject: [PATCH] Fix: Show more information in console when outputting "Image stream has loaded!..." message (MonitorStream.js) --- web/js/MonitorStream.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/js/MonitorStream.js b/web/js/MonitorStream.js index b88cb443c..0025b6911 100644 --- a/web/js/MonitorStream.js +++ b/web/js/MonitorStream.js @@ -71,7 +71,7 @@ function MonitorStream(monitorData) { }; this.img_onload = function() { if (!this.streamCmdTimer) { - console.log('Image stream has loaded! starting streamCmd for '+this.connKey+' in '+statusRefreshTimeout + 'ms'); + console.log('Image stream has loaded! starting streamCmd for monitor ID='+this.id+' connKey='+this.connKey+' in '+statusRefreshTimeout + 'ms'); this.streamCmdQuery.bind(this); this.streamCmdTimer = setInterval(this.streamCmdQuery.bind(this), statusRefreshTimeout); }