Skip to content

Commit

Permalink
remove no needed logger
Browse files Browse the repository at this point in the history
  • Loading branch information
mayitoeb committed Jun 13, 2018
1 parent 1b68a90 commit bee7a98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/ads/shared/ad.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class AdService {
getAds (): Observable<Ad[]> {
return this.http.get<Ad[]>(this.adUrl)
.pipe(
tap(ads => console.log('fetched ads', ads)),
tap(ads => console.log('fetched ads')),
catchError(this.handleError('getAds', []))
);
}
Expand Down

0 comments on commit bee7a98

Please sign in to comment.