You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That's not a bug, but while checking I did find a related one. We want to set the log level as early as possible, so we set it as soon as we've got the args and before build_config() is run here.
But, it turns out that log_level in the config file is ignored. Command-line options should override config options, so we should set the log level in this precedence:
Setting
--debug
on the command line doesn't changeconfig["log_level"]
frominfo
todebug
, should it?The text was updated successfully, but these errors were encountered: