From 2c3d8fd0316e9ce9dc601490b930ca061fcc743d Mon Sep 17 00:00:00 2001 From: Art Lowel Date: Wed, 15 Apr 2020 15:31:06 +0200 Subject: [PATCH] remove console log --- src/app/core/cache/object-cache.service.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/core/cache/object-cache.service.ts b/src/app/core/cache/object-cache.service.ts index 43842cf5fa..d82a1f31fe 100644 --- a/src/app/core/cache/object-cache.service.ts +++ b/src/app/core/cache/object-cache.service.ts @@ -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;