0

Ubuntu 20.04.2 LTS Gnome 3.36.8

$ logrotate --version
logrotate 3.14.0

It's been impossible to get logs to rotate automatically once they reach a size of 125M. Here's the config file saved to /etc/logrotate.d:

/home/App/Logs/*.log 
{
    missingok
    size 125M
    rotate 14
    create
}

What's missing?

1 Answers1

0

This solution here took care of everything.