I'm trying to use the standard library to debug my code:
This works fine:
import logging
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
logger.info('message')
I can't make work the logger for the lower levels:
logging.basicConfig(level=logging.DEBUG)
logger = logging.getLogger(__name__)
logger.info('message')
logging.basicConfig(level=logging.DEBUG)
logger = logging.getLogger(__name__)
logger.debug('message')
I don't get any response for neither of those.
I use the following setup for logging
Yaml based config
Create a yaml file called logging.yml like this
Python - The main
The "main" module should look like this
Sub Modules/Classes
These should start like this
Hope that helps you...
What Python version? That workd for me in 3.4. But note that basicConfig() won't effect the root handler if it's already setup:
To set the level on root explicitly do
logging.getLogger().setLevel(logging.DEBUG)
. But ensure you've calledbasicConfig()
before hand so the root logger initially has some setup. I.e.:Also note that "Loggers" and their "Handlers" both have distinct independent log levels. So if you've previously explicitly loaded some complex logger config in you Python script, and that has messed with the root logger's handler(s), then this can have an effect, and just changing the loggers log level with
logging.getLogger().setLevel(..)
may not work. This is because the attached handler may have a log level set independently. This is unlikely to be the case and not something you'd normally have to worry about.