Skip to content

Commit

Permalink
Removed console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed Jan 28, 2020
1 parent 0fab57f commit e8224f4
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 7 deletions.
1 change: 0 additions & 1 deletion ui/src/app/core/service/api-path.interceptor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ export class ApiPathInterceptor implements HttpInterceptor {
) {}
intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
const apiReq = req.clone({ url: `${this.baseHref}${req.url}` });
console.log(req);
return next.handle(apiReq);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,6 @@ export class MetadataOptionsComponent implements OnDestroy {
protected router: Router,
protected activatedRoute: ActivatedRoute
) {

console.log('metadata options');

this.model$
.pipe(
takeUntil(this.ngUnsubscribe),
Expand Down
1 change: 0 additions & 1 deletion ui/src/app/metadata/domain/service/provider.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ export class MetadataProviderService {
}

find(id: string): Observable<MetadataProvider> {
console.log(id);
return this.http.get<MetadataProvider>(`${this.base}${this.endpoint}/${id}`);
}

Expand Down
1 change: 0 additions & 1 deletion ui/src/app/metadata/domain/service/resolver.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ export class ResolverService {
}

find(id: string): Observable<MetadataResolver> {
console.log(API_BASE_PATH);
return this.http.get<MetadataResolver>(`${ this.base }${ this.endpoint }/${ id }`);
}

Expand Down
1 change: 0 additions & 1 deletion ui/src/app/metadata/provider/effect/collection.effect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ export class CollectionEffects {
map(action => action.payload),
withLatestFrom(this.store.select(fromI18n.getMessages)),
map(([error, messages]) => {
console.log(error);
let message = `${error.errorCode}: ${this.i18nService.translate(error.errorMessage, null, messages)}`;
message = error.cause ? `${message} - ${error.cause}` : message;
return new AddNotification(
Expand Down

0 comments on commit e8224f4

Please sign in to comment.