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); }