You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi guys i'm using boost log for rotation by day and file size, i also set max log size store in logdir
my log file are :
log_2018-02-20_000.log
log_2018-02-20_001.log
log_2018-02-20_002.log
log_2018-02-21_003.log
log_2018-02-21_004.log
How to reset log file number to zero when new day come ? of course i'm still need log max_size limit
something like :
log_2018-02-20_000.log
log_2018-02-20_001.log
log_2018-02-20_002.log
log_2018-02-21_000.log
log_2018-02-21_001.log
Hi guys i'm using boost log for rotation by day and file size, i also set max log size store in logdir
my log file are :
log_2018-02-20_000.log
log_2018-02-20_001.log
log_2018-02-20_002.log
log_2018-02-21_003.log
log_2018-02-21_004.log
How to reset log file number to zero when new day come ? of course i'm still need log max_size limit
something like :
log_2018-02-20_000.log
log_2018-02-20_001.log
log_2018-02-20_002.log
log_2018-02-21_000.log
log_2018-02-21_001.log
Here is my code
` log_file_path = LOGS_PATH + L"/log_%Y-%m-%d_%3N.log";
`
The text was updated successfully, but these errors were encountered: