croncat-rs
croncat-rs copied to clipboard
File system logs rotate daily but never delete themselves
Problem:
Right now the logging setup to ~/.croncat/logs
will make a new file daily but never cleans up after itself.
Solution:
Truncate logs after n
days, maybe make this configurable? (Default to 7 days?).
Right now file-append
from tracing
has no idea to remove old logs? Maybe create a log clean up task? Need to think this through.
Tasks:
TBD