aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2021-08-06 22:42:25 +0200
committerlonkaars <loek@pipeframe.xyz>2021-08-06 22:42:25 +0200
commitc0f3a5cf1c7be29aba155eba214c13f921c00b2b (patch)
tree1f71ab0df52257dd66795df8cdc0f530387bbdea
parent8d9015ddff1ef4fe1f65bdae3f3dbef238234980 (diff)
removed excessive log.info
-rw-r--r--package.json2
-rw-r--r--plugin.ts1
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",
diff --git a/plugin.ts b/plugin.ts
index ec8d790..70d250c 100644
--- a/plugin.ts
+++ b/plugin.ts
@@ -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;