diff --git a/src/api/telemetry/TelemetryCollection.js b/src/api/telemetry/TelemetryCollection.js index 2ff078caf4..231e141f9b 100644 --- a/src/api/telemetry/TelemetryCollection.js +++ b/src/api/telemetry/TelemetryCollection.js @@ -73,10 +73,6 @@ export default class TelemetryCollection extends EventEmitter { this.isStrategyLatest = this.options.strategy === 'latest'; this.dataOutsideTimeBounds = false; this.modeChanged = false; - - console.debug( - `🫙 Created telemetry for ${this.domainObject.name} with bounds ${new Date(options.start).toISOString()} and ${new Date(options.end).toISOString()}` - ); } /** diff --git a/src/plugins/comps/CompsManager.js b/src/plugins/comps/CompsManager.js index 88721362f1..6d912ef397 100644 --- a/src/plugins/comps/CompsManager.js +++ b/src/plugins/comps/CompsManager.js @@ -108,9 +108,9 @@ export default class CompsManager extends EventEmitter { } async load(telemetryOptions) { - if (!_.isEqual(telemetryOptions, this.#telemetryOptions) && this.#loaded) { + if (!_.isEqual(telemetryOptions, this.#telemetryOptions)) { console.debug( - `😩 Reloading comps manager ${this.#domainObject.name} due to telemetry options change. New bounds are: ${new Date(telemetryOptions.start).toISOString()} to ${new Date(telemetryOptions.end).toISOString()}`, + `😩 Reloading comps manager ${this.#domainObject.name} due to telemetry options change.`, telemetryOptions ); this.#destroy();