@pepperi-addons/ngx-lib 0.3.15-loader.2 → 0.3.15-loader.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -113,16 +113,16 @@
113
113
  PepLoaderInterceptor.prototype.intercept = function (req, next) {
114
114
  // console.warn('LoaderInterceptor');
115
115
  var loaderService = this.injector.get(PepLoaderService);
116
- console.log('show', req);
116
+ console.log('show', req.url);
117
117
  loaderService.show();
118
118
  return next.handle(req).pipe(
119
119
  // delay(3000),
120
120
  operators.catchError(function (err) {
121
- console.log('hide due to error', req);
121
+ console.log('hide due to error', req.url);
122
122
  loaderService.hide();
123
123
  return rxjs.throwError(err);
124
124
  }), operators.finalize(function () {
125
- console.log('hide', req);
125
+ console.log('hide', req.url);
126
126
  return loaderService.hide();
127
127
  }));
128
128
  // return next.handle(req).pipe(map(event => {