Remove logging messages

This commit is contained in:
Tobias Eidelpes 2021-05-03 15:18:38 +02:00
parent 99f931a371
commit d07a5502a2

View File

@ -13,7 +13,6 @@ export class FeedService {
constructor(private http: HttpClient) {}
getFeeds(): Observable<IFeed[]> {
console.log('FeedService called');
return this.http.get<IFeed[]>(this.url).pipe(delay(200));
}
}