From 6e863f02d3fdf71ac8a9b4ec2de45aeba60eb9c4 Mon Sep 17 00:00:00 2001 From: shahid bangash Date: Mon, 14 Sep 2020 09:05:09 +0500 Subject: [PATCH] remove console.error --- .../src/lib/directive/ngxloading.directive.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/projects/ngx-loading-plugin/src/lib/directive/ngxloading.directive.ts b/projects/ngx-loading-plugin/src/lib/directive/ngxloading.directive.ts index 902bb50..ec7a0d6 100644 --- a/projects/ngx-loading-plugin/src/lib/directive/ngxloading.directive.ts +++ b/projects/ngx-loading-plugin/src/lib/directive/ngxloading.directive.ts @@ -27,12 +27,10 @@ export class NgxloadingDirective implements OnDestroy { .subscribe(() => { this.onSuccess(); }, (error) => { - console.error(error); this.onError(); } ); } catch (error) { - console.error(error); this.onError(); this.onEnable(); }