Unverified Commit 2f3d36a8 authored by Adam Brusselback's avatar Adam Brusselback Committed by GitHub
Browse files

Fix logging so we actually get info level entries in the log. (#1494)

parent ac8d36f3
......@@ -48,4 +48,8 @@ _setup_logger()
def init_logger(name: str):
return logging.getLogger(name)
# Use the same settings as above for root logger
logger = logging.getLogger(name)
logger.setLevel(logging.DEBUG)
logger.addHandler(_default_handler)
return logger
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