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
out.exception writes one line using error (Level 0) and the backtrace with Level 1. Since the default for dosage is 0, normal runs only get the error message, adding -v raises the level to 1, which allows you to see the backtrace.
Is this a mess? Yes, this is a mess.
The text was updated successfully, but these errors were encountered:
This includes multiple steps:
out.(warn|debug|info|error)
with standard Python logging callsout.pager()
cmd.py
) with standard logging configurationrich
?Mapping from current "levels" (see https://github.com/webcomics/dosage/blob/master/dosagelib/output.py#L29) to Python standard levels:
out.
methodlevel
error
ERROR:
RED
logging.ERROR
warn
WARN:
YELLOW
logging.WARNING
info
logging.INFO
info
²15
maybe?)debug
WHITE
logging.DEBUG
debug
²5
maybe?)² Called with different level then default...
out.exception
writes one line usingerror
(Level 0) and the backtrace with Level 1. Since the default for dosage is 0, normal runs only get the error message, adding-v
raises the level to 1, which allows you to see the backtrace.Is this a mess? Yes, this is a mess.
The text was updated successfully, but these errors were encountered: