homebridge-melcloud-control 3.8.3-beta.8 → 3.8.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -336,7 +336,6 @@ class MelCloudAta extends EventEmitter {
336
336
  //check state changes
337
337
  const deviceDataHasNotChanged = JSON.stringify(deviceState) === JSON.stringify(this.deviceState);
338
338
  if (deviceDataHasNotChanged) {
339
- const debug = this.enableDebugMode ? this.emit('debug', `Data not changed`) : false;
340
339
  return;
341
340
  }
342
341
  this.deviceState = deviceState;
@@ -400,7 +400,6 @@ class MelCloudAtw extends EventEmitter {
400
400
  //check state changes
401
401
  const deviceDataHasNotChanged = JSON.stringify(deviceState) === JSON.stringify(this.deviceState);
402
402
  if (deviceDataHasNotChanged) {
403
- const debug = this.enableDebugMode ? this.emit('debug', `Data not changed`) : false;
404
403
  return;
405
404
  }
406
405
  this.deviceState = deviceState;
@@ -324,7 +324,6 @@ class MelCloudErv extends EventEmitter {
324
324
  //check state changes
325
325
  const deviceDataHasNotChanged = JSON.stringify(deviceState) === JSON.stringify(this.deviceState);
326
326
  if (deviceDataHasNotChanged) {
327
- const debug = this.enableDebugMode ? this.emit('debug', `Data not changed`) : false;
328
327
  return;
329
328
  }
330
329
  this.deviceState = deviceState;