Skip to content
7 changes: 4 additions & 3 deletions can/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,10 @@ def main() -> None:
"--file_size",
dest="file_size",
type=int,
help="Maximum file size in bytes (or for the case of blf, maximum "
"buffer size before compression and flush to file). Rotate log "
"file when size threshold is reached.",
help="Maximum file size in bytes. Rotate log file when size threshold "
"is reached. (The resulting file sizes will be consistent, but are not "
"guaranteed to be exactly what is specified here due to the rollover "
"conditions being logger implementation specific.)",
default=None,
)

Expand Down