4371 shaares
"logging.basicConfig
configures the root logger : this is not something you want to do in practice, because it causes debugging output for all loggers in your program, including every library that uses logging.
In general, you'll want ot leave the root logger alone and configure a specific "main" logger for your program and put all the other loggers under that logger."