Skip to content

Commit

Permalink
Turning the log for the setColorTemperature to be debug. This should …
Browse files Browse the repository at this point in the history
…resolve the issue seen by @dibsies in the comments of PR #415
  • Loading branch information
05TEVE committed Jan 17, 2024
1 parent f0cfc36 commit de75c0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/RGBTWLightAccessory.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ class RGBTWLightAccessory extends BaseAccessory {
}

setColorTemperature(value, callback) {
this.log.info(`setColorTemperature: ${value}`);
this.log.debug(`setColorTemperature: ${value}`);
if (value === 0) return callback(null, true);

const newColor = this.convertHomeKitColorTemperatureToHomeKitColor(value);
Expand Down

0 comments on commit de75c0e

Please sign in to comment.