summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLi Zhineng <[email protected]>2025-07-22 09:50:52 +0800
committerLi Zhineng <[email protected]>2025-07-22 09:50:52 +0800
commit7f3732e13ac0f6fbf923b1a93e9d1230b3388cc5 (patch)
treed7cabf8592ff4ffa1d6a5af3fcfbf0de642b0472 /src
parent7eb50cfe6eba2133018093b817549f4f8b276fad (diff)
downloadhomebridge-airmx-7f3732e13ac0f6fbf923b1a93e9d1230b3388cc5.tar.gz
homebridge-airmx-7f3732e13ac0f6fbf923b1a93e9d1230b3388cc5.zip
debug level logs
Diffstat (limited to 'src')
-rw-r--r--src/index.ts4
1 files changed, 2 insertions, 2 deletions
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,