1
0

remove console log

This commit is contained in:
Art Lowel
2020-04-15 15:31:06 +02:00
parent d02c41c089
commit 2c3d8fd031

View File

@@ -261,7 +261,6 @@ export class ObjectCacheService {
const timeOutdated = entry.timeAdded + entry.msToLive;
const isOutDated = new Date().getTime() > timeOutdated;
if (isOutDated) {
console.log('removing', entry.data._links.self.href);
this.store.dispatch(new RemoveFromObjectCacheAction(entry.data._links.self.href));
}
return !isOutDated;