summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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,