Skip to content

Commit

Permalink
Removed some logging
Browse files Browse the repository at this point in the history
  • Loading branch information
lprhodes committed Apr 21, 2017
1 parent ccf0d69 commit 80427ae
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion accessories/accessory.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ class BroadlinkRMAccessory {
const restoreStateOrder = this.restoreStateOrder();

const state = persistentState.load({ host, name }) || {};
console.log(name, state)

this.state = addSaveProxy(state, (state) => {
persistentState.save({ host, name, state });
Expand Down
2 changes: 0 additions & 2 deletions accessories/aircon.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ class AirConAccessory extends BroadlinkRMAccessory {
if (!state.targetTemperature) state.targetTemperature = minTemperature || 0;
if (!state.firstTemperatureUpdate) state.firstTemperatureUpdate = true;

console.log('state.targetTemperature', state.targetTemperature)

config.minTemperature = minTemperature || 0;
config.maxTemperature = maxTemperature || 30;

Expand Down

0 comments on commit 80427ae

Please sign in to comment.