class documentation
class BufferedLogEntry(Protocol): (source)
A buffered log entry.
Property | fields |
Additional log entry fields. Requesting this property performs a conversion from the internal representation to the Python representation on every request. Therefore callers should store the result instead of repeatedly calling. |
Property | level |
Python log level, with trace as 9. |
Property | message |
Log message. |
Property | target |
Target category for the log entry. |
Property | time |
Time as from time.time since Unix epoch. |
Additional log entry fields. Requesting this property performs a conversion from the internal representation to the Python representation on every request. Therefore callers should store the result instead of repeatedly calling.
Raises | |
Exception | If the internal representation cannot be converted. This should not happen and if it does it is considered a bug in the SDK and should be reported. |