A collection of switching log file handlers
Project description
switchinglogfilehandlers
A collection of switching log file handlers for the Python logging system. Unlike the rotating log file handlers in the Python core which always write to a file with a fixed name and peridically rename that, these handlers always open a new file with a unique name - old files will never be renamed.
TimedSwitchingFileHandler
This file handler starts a new file at regular intervals, comparable to the TimedRotatingFileHandler. The switch always occurs at a “round” time, i.e. at the hour for hourly switches, at midnight for daily switches, etc. The old file stays open until just before the first log entry is written to the new file.
Parameters
| Parameter | Default | Description |
|---|---|---|
filename |
(required) | Path to the log files. The timestamp and .log is appended |
when |
'h' |
When log files are switched: (every second, minute, hour, day, week) |
utc |
False |
Timestamps are in UTC (otherwise local time) |
create_directory |
False |
Intermediate directories in filename are created if necessary |
TimeoutSwitchingFileHandler
This file handler automatically closes the log file after a period of inactivity (or after the file has been open for some time whichever comes first) and then opens a new file at the next emit.
This is useful for long-running processes where short periods of activity alternate with periods of inactivity. Log switchse will typically occur during inactivity, so each log file will include one complete active period. Also, since the log files are closed, they can be safely compressed or removed.
Parameters
| Parameter | Default | Description |
|---|---|---|
filename |
(required) | Path to the log files. The timestamp is appended |
min_timeout |
60 |
Logfile is closed if there hasn't been any activity for min_timeout seconds |
max_timeout |
3600 |
Logfile is closed if is has been created max_timeout seconds ago |
create_directory |
False |
Intermediate directories in filename are created if necessary |
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file switchinglogfilehandlers-0.0.5.tar.gz.
File metadata
- Download URL: switchinglogfilehandlers-0.0.5.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4bf8b9fee8ddc93831654f0a5301d711774c9d8144e9574250b72b96af53350a
|
|
| MD5 |
6c0c472e36940fa904784d6f774c5862
|
|
| BLAKE2b-256 |
592ba0a68837faad97607933bc8155374574bd6132797805aa25a1658258e5a5
|
File details
Details for the file switchinglogfilehandlers-0.0.5-py3-none-any.whl.
File metadata
- Download URL: switchinglogfilehandlers-0.0.5-py3-none-any.whl
- Upload date:
- Size: 3.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0caeb79ba676c58c25f3248432024c4ed08a509732e1ed09a186f2414a646f2
|
|
| MD5 |
42f667396b3fa40eaa0fc10847454e17
|
|
| BLAKE2b-256 |
ac638785dba53e27ffe67301834f955fc7813aae905388005ecd534e8ff52241
|