From 4f2e74bddbd43ca7aef39ed4aa2f185299121ed7 Mon Sep 17 00:00:00 2001 From: Wolfgang Hottgenroth Date: Tue, 27 Mar 2018 21:33:17 +0200 Subject: [PATCH] reduced logging --- src/RelayBox.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/RelayBox.ts b/src/RelayBox.ts index 15dc72b..d9e0b2a 100644 --- a/src/RelayBox.ts +++ b/src/RelayBox.ts @@ -34,7 +34,7 @@ export class RelayBoxThing extends AItem { processMessage(topic: string, payload: string) { // logger.info(`RT: ${topic}, ${payload}`) if (topic == this.deviceStatusTopic) { - logger.info(`RT: status received`) + // logger.info(`RT: status received`) this.status = JSON.parse(payload) let statusParsed = JSON.stringify(this.status) this.switchStates = JSON.stringify(this.status.data.switchStates)