From 88f7befce80b82f836aa097797ec668fd31c1a42 Mon Sep 17 00:00:00 2001 From: asgothian <45667167+asgothian@users.noreply.github.com> Date: Sat, 11 Jan 2025 21:19:26 +0100 Subject: [PATCH] Update statescontroller.js --- lib/statescontroller.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/statescontroller.js b/lib/statescontroller.js index a2dc9c82..951a1873 100644 --- a/lib/statescontroller.js +++ b/lib/statescontroller.js @@ -109,7 +109,7 @@ class StatesController extends EventEmitter { } if (this.checkDebugDevice(id)) - this.warn(`ELEVATED O1: User state change of state ${id} with value ${state.val} (ack: ${state.ack}) from ${state.from}`); + this.warn(`ELEVATED O01: User state change of state ${id} with value ${state.val} (ack: ${state.ack}) from ${state.from}`); this.debug(`User stateChange ${id} ${JSON.stringify(state)}`); const devId = getAdId(this.adapter, id); // iobroker device id @@ -211,7 +211,7 @@ class StatesController extends EventEmitter { this.debug(`Change state '${stateKey}' at device ${deviceId} type '${model}'`); const elevated = this.checkDebugDevice(deviceId); - if (elevated) this.warn(`ELEVATED O2: Change state '${stateKey}' at device ${deviceId} type '${model}'`); + if (elevated) this.warn(`ELEVATED O02: Change state '${stateKey}' at device ${deviceId} type '${model}'`); const devStates = await this.getDevStates(deviceId, model); if (!devStates) {