removed console.log statements

This commit is contained in:
Art Lowel
2017-07-27 16:55:57 +02:00
parent 05626e2607
commit 2e572f67d9
2 changed files with 0 additions and 2 deletions

View File

@@ -135,7 +135,6 @@ export class ObjectCacheService {
this.store.select(objectFromUuidSelector(uuid))
.take(1)
.do((entry: ObjectCacheEntry) => console.log(entry))
.subscribe((entry) => result = this.isValid(entry));
return result;

View File

@@ -58,7 +58,6 @@ export class ResponseCacheService {
this.store.select(entryFromKeySelector(key))
.take(1)
.do((entry) => console.log('ResponseCacheEntry', entry))
.subscribe((entry) => {
result = this.isValid(entry);
});