Skip to content

Commit

Permalink
changed log data to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
hacki11 committed Oct 12, 2019
1 parent f300dff commit 23119c3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class Bsblan extends utils.Adapter {
}

update() {
this.log.info("Fetch values ...")
this.log.debug("Fetch values ...")
this.detectNewObjects(this.values)
.then(newValues => this.initializeParameters(newValues))
.then(() => this.connectionHandler(true))
Expand All @@ -84,7 +84,7 @@ class Bsblan extends utils.Adapter {
}

refreshTimer() {
this.log.info("Reset Timer")
this.log.debug("Reset Timer")
this.timer = setTimeout(() => this.update(), this.interval);
}

Expand Down Expand Up @@ -176,7 +176,7 @@ class Bsblan extends utils.Adapter {
}

setStates(data) {
this.log.info(JSON.stringify(data));
this.log.debug(JSON.stringify(data));
for (let key of Object.keys(data)) {
this.setStateAsync(this.createId(key, data[key].name), {val: data[key].value, ack: true})
.catch((error) => this.errorHandler(error));
Expand Down

0 comments on commit 23119c3

Please sign in to comment.