imod.logging.loglevel.LogLevel#
- class imod.logging.loglevel.LogLevel(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)[source]#
Bases:
Enum
The available log levels for the logger.
- __init__(*args, **kwds)#
Attributes
A log level used for events considered to be useful during software debugging when more granular information is needed.
An event happened, the event is purely informative and can be ignored during normal operations.
Unexpected behavior happened inside the application, but it is continuing its work and the key business features are operating as expected.
One or more functionalities are not working, preventing some functionalities from working correctly.
One or more key business functionalities are not working and the whole system doesn’t fulfill the business functionalities.
- CRITICAL = 50#
One or more key business functionalities are not working and the whole system doesn’t fulfill the business functionalities.
- DEBUG = 10#
A log level used for events considered to be useful during software debugging when more granular information is needed.
- ERROR = 40#
One or more functionalities are not working, preventing some functionalities from working correctly.
- INFO = 20#
An event happened, the event is purely informative and can be ignored during normal operations.
- WARNING = 30#
Unexpected behavior happened inside the application, but it is continuing its work and the key business features are operating as expected.