File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -194,8 +194,9 @@ def main() -> None:
194
194
dest = "file_size" ,
195
195
type = int ,
196
196
help = "Maximum file size in bytes (or for the case of blf, maximum "
197
- "buffer size before compression and flush to file). Rotate log "
198
- "file when size threshold is reached." ,
197
+ "buffer size before compression and flush to file). Rotate log file "
198
+ "when size threshold is reached. (If file_time is also given, then the "
199
+ "first of the two constraints to occur is what causes the rollover.)" ,
199
200
default = 0 ,
200
201
)
201
202
@@ -204,7 +205,9 @@ def main() -> None:
204
205
"--file_time" ,
205
206
dest = "file_time" ,
206
207
type = int ,
207
- help = "Maximum period in seconds before rotating log file." ,
208
+ help = "Maximum period in seconds before rotating log file. (If file_size"
209
+ "is also given, then the first of the two constraints to occur is"
210
+ "what causes the rollover.)" ,
208
211
default = 0 ,
209
212
)
210
213
You can’t perform that action at this time.
0 commit comments