"vscode:/vscode.git/clone" did not exist on "eab980fd684d82e7e2f9e045e570389fe4f7e693"
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: ...@@ -54,7 +54,7 @@ def _configure_library_root_logger() -> None:
# Apply our default configuration to the library root logger. # Apply our default configuration to the library root logger.
library_root_logger = _get_library_root_logger() library_root_logger = _get_library_root_logger()
library_root_logger.addHandler(_default_handler) library_root_logger.addHandler(_default_handler)
library_root_logger.setLevel(logging.INFO) library_root_logger.setLevel(logging.WARN)
library_root_logger.propagate = False 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