class documentation

class LogFormat(Enum):

View In Hierarchy

Structured logging format to use.

Constant AUTOMATIC Automatic logging output, KEY_VALUE if there is a terminal, otherwise JSON.
Constant JSON JSON formatted logging output
Constant KEY_VALUE Key=Value formatted logging output
AUTOMATIC: str =

Automatic logging output, KEY_VALUE if there is a terminal, otherwise JSON.

Value
'automatic'
JSON: str =

JSON formatted logging output

Value
'json'
KEY_VALUE: str =

Key=Value formatted logging output

Value
'key_value'