diff options
author | lonkaars <loek@pipeframe.xyz> | 2021-08-06 22:42:25 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2021-08-06 22:42:25 +0200 |
commit | c0f3a5cf1c7be29aba155eba214c13f921c00b2b (patch) | |
tree | 1f71ab0df52257dd66795df8cdc0f530387bbdea | |
parent | 8d9015ddff1ef4fe1f65bdae3f3dbef238234980 (diff) |
removed excessive log.info
-rw-r--r-- | package.json | 2 | ||||
-rw-r--r-- | plugin.ts | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/package.json b/package.json index 9778bc0..f07323d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "displayName": "Beken LED Homebridge plugin", "name": "homebridge-beken", - "version": "0.1.3", + "version": "0.1.4", "description": "homebridge beken led plugin", "author": "lonkaars <loek@pipeframe.xyz>", "license": "MIT", @@ -98,7 +98,6 @@ export default class BekenBridge implements AccessoryPlugin { } updateLamp() { - this.log.info(JSON.stringify(this.state, null, 2)); if (!this.state.on) { this.lamp.color = [0, 0, 0, 0]; return; |