Is your feature request related to a problem? Please describe.
Current title logging has hardcoded configuration parameters of backupCount=5 and maxBytes=50000, thus there are no clean way to increase these values via configuration.
Describe the solution you'd like
Expose controls for maxBytes and backupCount via configuration, so it would be possible to increase these values.
Describe alternatives you've considered
- Hackish way of modifying config.py directly does the job, but breaks after upgrade. Thus one need to remember to apply it again.
- Creating crontab with a script that copies log files to some other directory so it won't be rotated. This creates another issue of duplicating same files and thus leading to create more complex pipeline that could be avoided.
Additional context
Would be willing to implement this if the request is approved or maybe someone could suggest a clean workaround how can this be done.
Is your feature request related to a problem? Please describe.
Current title logging has hardcoded configuration parameters of
backupCount=5andmaxBytes=50000, thus there are no clean way to increase these values via configuration.Describe the solution you'd like
Expose controls for
maxBytesandbackupCountvia configuration, so it would be possible to increase these values.Describe alternatives you've considered
Additional context
Would be willing to implement this if the request is approved or maybe someone could suggest a clean workaround how can this be done.