Skip to content

Commit b5ace55

Browse files
Copilotbaywet
andcommitted
Remove console.debug statements from HttpClient constructor
Co-authored-by: baywet <7905502+baywet@users.noreply.github.com>
1 parent 33ff41f commit b5ace55

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

packages/http/fetch/src/httpClient.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,6 @@ export class HttpClient {
3131
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument
3232
middlewares.push(new CustomFetchHandler(customFetch as any));
3333
}
34-
// eslint-disable-next-line no-console
35-
console.debug("Registered middlewares: " + middlewares.map((m) => m.constructor.name).join(", "));
36-
// eslint-disable-next-line no-console
37-
console.debug("Hint: To improve performance, use MiddlewareFactory.getPerformanceMiddlewares(customFetch) instead of MiddlewareFactory.getDefaultMiddlewares(customFetch)");
3834

3935
// Set the middleware chain
4036
this.setMiddleware(...middlewares);

0 commit comments

Comments
 (0)