mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-23 04:38:37 -05:00
Reduce maximum diagnostic log file size before rotation to 5 Mbyte
This commit is contained in:
parent
f31a4efbee
commit
ca6280a6df
@ -192,7 +192,7 @@ WSJTXLogging::WSJTXLogging ()
|
||||
(
|
||||
sinks::file::make_collector
|
||||
(
|
||||
keywords::max_size = 40 * 1024 * 1024
|
||||
keywords::max_size = 5 * 1024 * 1024
|
||||
, keywords::min_free_space = 1024 * 1024 * 1024
|
||||
, keywords::max_files = 12
|
||||
, keywords::target = app_data.absoluteFilePath ("logs").toStdWString ()
|
||||
|
@ -7,7 +7,7 @@ TargetFileName="${AppLocalDataLocation}/logs/wsjtx_syslog_%Y-%m.log"
|
||||
RotationTimePoint="01 00:00:00"
|
||||
Append=true
|
||||
EnableFinalRotation=false
|
||||
MaxSize=41943040
|
||||
MaxSize=52428800
|
||||
MinFreeSpace=1073741824
|
||||
MaxFiles=12
|
||||
Target="${AppLocalDataLocation}/logs"
|
||||
|
Loading…
Reference in New Issue
Block a user