atoti.LoggingConfig#
- final class atoti.LoggingConfig#
The config describing how the session logs will be handled.
Example
>>> config = tt.LoggingConfig(destination="./atoti/server.log")
- destination: Path | TextIO | TextIOBase | None = None#
The place where the session logs will be written to.
If
None
, the logs will be written tologs/server.log
in the session directory under$ATOTI_HOME
(this environment variable itself defaults to$HOME/.atoti
).Note
Unless an instance of
io.TextIOBase
is passed, the rolling policy is:Maximum file size of 10MB.
Maximum history of 7 days.
Once the maximum size is reached, logs are archived following the pattern
f"{destination}.{date}.{i}.gz"
wheredate
is the creation date of the file in theyyyy-MM-dd
format andi
an integer incremented during the day.Example
To stream the session logs to the Python process’ standard output:
>>> import sys >>> logging_config = tt.LoggingConfig(destination=sys.stdout)