From 0802e50c58db9fc2488229fbe5d1ee8009b94fe8 Mon Sep 17 00:00:00 2001 From: leonreucher Date: Thu, 7 Nov 2024 12:31:32 +0100 Subject: [PATCH] Removed debugging messages --- index.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/index.js b/index.js index abba108..253990e 100644 --- a/index.js +++ b/index.js @@ -156,7 +156,6 @@ class HDMIVideoWallProcessor extends InstanceBase { }) } if ('volume' in data) { - this.log('debug', 'Got volume!') this.volume = data.volume this.setVariableValues({ volume: this.volume, @@ -178,11 +177,8 @@ class HDMIVideoWallProcessor extends InstanceBase { textData = event.data } - console.log('Raw message data:', textData) - if (textData.trim()) { msgValue = JSON.parse(textData) - console.log('Parsed message data:', msgValue) this.parsePowerPointStatus(msgValue) } else {