diff --git a/lib/HueLight.js b/lib/HueLight.js index 0f0b2b6..8f9ab3a 100644 --- a/lib/HueLight.js +++ b/lib/HueLight.js @@ -2157,10 +2157,12 @@ HueLight.prototype.getTransitionControl = function (callback) { this.log.debug( '%s: set homekit transition control to %j', this.name, control ) - this.log.info( - '%s: set homekit transition control to %j', this.name, - this.al.parseControl(control) - ) + if (control !== '') { + this.log.info( + '%s: set homekit transition control to %j', this.name, + this.al.parseControl(control) + ) + } callback(null, control) } catch (error) { this.log.warn(