From 1549872cb8ed8cc9de1a0e82db606a9ced42bdde Mon Sep 17 00:00:00 2001 From: Marie Verdonck Date: Mon, 9 Mar 2020 18:46:00 +0100 Subject: [PATCH] removed logs --- src/app/core/cache/object-cache.service.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app/core/cache/object-cache.service.ts b/src/app/core/cache/object-cache.service.ts index 036c9f0ed8..d82a1f31fe 100644 --- a/src/app/core/cache/object-cache.service.ts +++ b/src/app/core/cache/object-cache.service.ts @@ -276,8 +276,6 @@ export class ObjectCacheService { * list of operations to perform */ public addPatch(selfLink: string, patch: Operation[]) { - console.log('selfLink addPatch', selfLink) - console.log('patch addPatch', patch) this.store.dispatch(new AddPatchObjectCacheAction(selfLink, patch)); this.store.dispatch(new AddToSSBAction(selfLink, RestRequestMethod.PATCH)); }