File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ export class Logger {
9393 // console.info('\tFORCE_LOG_WRITER', process && process.env && process.env.FORCE_LOG_WRITER)
9494 console . info ( '\tlocation' , import . meta. url )
9595 console . info ( '\tsystemThreshold' , this . getSystemThreshold ( ) )
96- console . info ( '\tdefaultThreshold' , this . getDefaultThreshold )
96+ console . info ( '\tdefaultThreshold' , this . getDefaultThreshold ( ) )
9797 console . info ( '\tDEBUG is' , Level . DEBUG )
9898 console . info ( '\tINFO is' , Level . INFO )
9999 console . info ( '\tConfigured logs:' )
Original file line number Diff line number Diff line change 11import { LoggersConfig } from './configureLoggers.js'
2+ import { Level } from './Level.js'
23
34export const debugs = ( classes : string [ ] ) : LoggersConfig => {
45 const loggers : LoggersConfig = { }
56 classes . forEach ( ( name ) => {
6- loggers [ name ] = 'debug'
7+ loggers [ name ] = Level . DEBUG
78 } )
89 return loggers
910}
You can’t perform that action at this time.
0 commit comments