diff --git a/src/lib/services/api-path.interceptor.ts b/src/lib/services/api-path.interceptor.ts index ae1edcb..9d97ae1 100644 --- a/src/lib/services/api-path.interceptor.ts +++ b/src/lib/services/api-path.interceptor.ts @@ -12,7 +12,6 @@ export class ApiPathInterceptor implements HttpInterceptor { intercept(req: HttpRequest, next: HttpHandler): Observable> { 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 })); }