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
Currently, the emitted messages only contain level names (f.ex. ERROR, CRITICAL, ...). Those names correspond to level values. Those names can be converted to/from their numeric values using logging.getLevelName. Additionally, the numeric values should be available on the log-record behind the attribute levelno:
Currently, the emitted messages only contain level names (f.ex.
ERROR
,CRITICAL
, ...). Those names correspond to level values. Those names can be converted to/from their numeric values usinglogging.getLevelName
. Additionally, the numeric values should be available on the log-record behind the attributelevelno
:Adding the numeric level value makes it much easier to filter on the severity by simply filtering on everything greater than
40
for example.The text was updated successfully, but these errors were encountered: