Skip to content
This repository was archived by the owner on Dec 4, 2024. It is now read-only.

Commit 5d50185

Browse files
fix: http logs to debug level (RUN-34) (#63)
1 parent 0d088c9 commit 5d50185

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/http.logger.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export const createHTTPConfig = ({ format, level }: LoggerOptions): Options => (
1818
if (isWarnResponse(res)) return LogLevel.WARN;
1919
if (isErrorResponse(res)) return LogLevel.ERROR;
2020
if (isHealthRequest(req)) return LogLevel.TRACE;
21-
return LogLevel.INFO;
21+
return LogLevel.DEBUG;
2222
},
2323
wrapSerializers: true,
2424

0 commit comments

Comments
 (0)