From 7f3732e13ac0f6fbf923b1a93e9d1230b3388cc5 Mon Sep 17 00:00:00 2001 From: Li Zhineng Date: Tue, 22 Jul 2025 09:50:52 +0800 Subject: debug level logs --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/index.ts') diff --git a/src/index.ts b/src/index.ts index 0df7172..55cfa67 100644 --- a/src/index.ts +++ b/src/index.ts @@ -91,12 +91,12 @@ class AirmxPlatform implements DynamicPlatformPlugin { }) this.airmx.onEagleUpdate((status) => { - this.log.info('Receive a status update from device:', status.deviceId) + this.log.debug('Receive a status update from device:', status.deviceId) const uuid = this.api.hap.uuid.generate(status.deviceId.toString()) const accessory = this.accessories.get(uuid) if (accessory) { - this.log.info('Update the current status to device:', status.deviceId) + this.log.debug('Update the current status to device:', status.deviceId) accessory.context.status = { power: status.power, mode: status.mode, -- cgit v1.2.3