Commit 4561f05c authored by Lysandre's avatar Lysandre
Browse files

Set default logging level to `WARNING` instead of `INFO`

parent 05c32141
......@@ -54,7 +54,7 @@ def _configure_library_root_logger() -> None:
# Apply our default configuration to the library root logger.
library_root_logger = _get_library_root_logger()
library_root_logger.addHandler(_default_handler)
library_root_logger.setLevel(logging.INFO)
library_root_logger.setLevel(logging.WARN)
library_root_logger.propagate = False
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment