From 994cf641a369a999b9848393738c33911bf70944 Mon Sep 17 00:00:00 2001 From: znetsixe <73483679+znetsixe@users.noreply.github.com> Date: Fri, 7 Nov 2025 15:10:46 +0100 Subject: [PATCH] removed some old comments --- src/specificClass.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/specificClass.js b/src/specificClass.js index b2dd199..7653a41 100644 --- a/src/specificClass.js +++ b/src/specificClass.js @@ -209,7 +209,6 @@ _callMeasurementHandler(measurementType, value, position, context) { async handleInput(source, action, parameter) { - this.logger.debug("hello"); //sanitize input if( typeof action !== 'string'){this.logger.error(`Action must be string`); return;} //convert to lower case to avoid to many mistakes in commands @@ -218,8 +217,6 @@ _callMeasurementHandler(measurementType, value, position, context) { // check for validity of the request if(!this.isValidActionForMode(action,this.currentMode)){return ;} if (!this.isValidSourceForMode(source, this.currentMode)) {return ;} - - this.logger.debug("hello2"); this.logger.info(`Handling input from source '${source}' with action '${action}' in mode '${this.currentMode}'.`);