EmersonElectricCo/lowball

Default log level for parent flask logger is warning

Closed this issue · 0 comments

Discovered that by default the level of the flask root logger is set to warning by default, and that the logger we modify to add the handler is set to NOT SET.

This will result in behavior where the logger we are working with passes it's level logic up to the root logger. This means that logs of level less than warning (we use info for a lot of our stuff) will automatically be dropped.

We need to either explicitly set the log level on the default logger, set the logger level explicitly to the level of the handler, if it exists, or overwrite the default logger with a newbuilt system logger.

Setting the log level explicitly is something that may require additional configuration, but it's an option.

Setting the log level explicitly as the log level of the handler makes the most sense.

Overwriting the default logger seems to make the least sense.

I will proceed with option 2.