Logging Level

class ska_control_model.LoggingLevel(value)

Python enumerated type for logging level.

DEBUG = 5

Logs of information relevant only for debugging

ERROR = 2

Logs of errors.

FATAL = 1

Logs of critical events that result in component shutdown or failure.

INFO = 4

Logs of information relevant to users.

OFF = 0

Logging is turned off.

WARNING = 3

Logs of warnings.

__new__(value)