# Troubleshooting ## logrotate isn’t rotating logs Make sure log patterns don’t end with `,`. This is correct: ``` /var/www/*/logs/*.log /var/www/*/logs/_log { ``` This is not: ``` /var/www/*/logs/*.log, /var/www/*/logs/_log { ```