Compare commits

...

1 Commits

Author SHA1 Message Date
2fb73e6713 Remove printing of EventData to prevent console spam 2025-10-10 11:12:38 +02:00

View File

@@ -163,7 +163,7 @@ class MeasurementContainer {
// Emit the exact event your parent expects
this.emitter.emit(`${this._currentType}.${this._currentVariant}.${this._currentPosition}`, eventData);
console.log(`Emitted event: ${this._currentType}.${this._currentVariant}.${this._currentPosition}`, eventData);
console.log(`Emitted event: ${this._currentType}.${this._currentVariant}.${this._currentPosition}`);
return this;
}