removed logging

This commit is contained in:
Timo Bejan 2024-11-06 15:49:04 +02:00
parent 310cc4bb51
commit 7c6f9fc25e

View File

@ -125,7 +125,6 @@ export abstract class GenericService<I> {
}
protected _updateLastChanged(key = ROOT_CHANGES_KEY): void {
console.log(this,'Update last changed for key: ', key ,' to ', new Date().toISOString());
this._lastCheckedForChanges.set(key, new Date().toISOString());
}
}