Data Classes¶
Predefined Data Classes¶
- class zlogging._data.ASCIIInfo(path, open, close, data, exit_with_error)[source]¶
Bases:
InfoParsed log info for ASCII logs.
The ASCII log will be stored as in this
dataclass, as introduced in PEP 557.- Parameters:
path (
PathLike[str]) – The value is specified in the ASCII log file under# pathdirective.open (
datetime) – The value is specified in the ASCII log file under# opendirective.close (
datetime) – The value is specified in the ASCII log file under# closedirective.data (
list[Model]) – The log records parsed as alistofModelper line.exit_with_error (
bool) – When exit with error, the ASCII log file doesn’t has a# closedirective.