RED-6686 removed console log

This commit is contained in:
Timo Bejan 2023-06-27 02:03:29 +03:00
parent 3cef35f3bf
commit 8e5376bd4f

View File

@ -12,7 +12,6 @@ export class ApiPathInterceptor implements HttpInterceptor {
intercept(req: HttpRequest<unknown>, next: HttpHandler): Observable<HttpEvent<unknown>> {
if (!req.url.startsWith('/assets')) {
const apiUrl = `${this.#config.API_URL}${req.url}`;
console.log('API URL: ', apiUrl);
return next.handle(req.clone({ url: apiUrl }));
}