[READ-ONLY] Mirror of https://github.com/FoxxMD/logging. A typed, opinionated, batteries-included, Pino-based logging solution for backend TS/JS projects foxxmd.github.io/logging
child-logger logging logging-library nodejs pinojs typescript-library
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: Console should follow LOG_LEVEL env if present

FoxxMD (Sep 3, 2025, 3:43 PM UTC) acad27fe 1659a6d8

+1 -1
+1 -1
src/funcs.ts
··· 55 55 const { 56 56 level = configLevel || defaultLevel, 57 57 file = configLevel || defaultLevel, 58 - console = configLevel || 'debug', 58 + console = configLevel || envLevel || 'debug', 59 59 } = config; 60 60 61 61 let fileObj: FileLogOptionsParsed;