From 60545b290930567ed26d63ca62b5d0f7f2fb50e2 Mon Sep 17 00:00:00 2001 From: Serge Wagener Date: Fri, 11 Feb 2022 09:07:51 +0100 Subject: [PATCH] Adding log line on setting items --- src/SmartHomeNG.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/SmartHomeNG.ts b/src/SmartHomeNG.ts index 3bab86f..84aab83 100644 --- a/src/SmartHomeNG.ts +++ b/src/SmartHomeNG.ts @@ -79,6 +79,7 @@ export class SmartHomeNG { } setItem(item: string, value: unknown): void { + this.platform.log.info('Sending value', value, 'for', item); const command = { 'cmd': 'item', 'id': item, 'val': value }; this.send(command); }