-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Labels
Description
Suppose I'm using the functions...
logger.info('Something happened')
logger.debug('Something happened')
The info message is output, and the debug message is dropped, as expected.
What statement would I make to change the logging level so that logger.debug() was output instead of dropped?
Likewise, suppose
mylogger = logger.Logger.getLogger('foo.bar.baz.MyThing');
mylogger.debug('Something happened')
How to add 'debug' to enabledLevels?
Reactions are currently unavailable