removed logging

This commit is contained in:
Timo Bejan 2024-11-06 15:49:04 +02:00 committed by Adina Țeudan
parent 2a486236aa
commit 24b67f3fb4

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());
}
}