Library: Remove console.log from localStorage service.

git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@56836 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
k.triantafyllou 2019-08-02 11:45:14 +00:00
parent 5a7f37302b
commit 3d79e469ef
1 changed files with 1 additions and 2 deletions

View File

@ -25,8 +25,7 @@ export class LocalStorageService {
this.communityDirectLink.next(Boolean(value).valueOf());
}
public get(): Observable<boolean> {
console.log(this.communityDirectLink.getValue());
public get(): Observable<boolean> {;
return this.communityDirectLink.asObservable();
}
}