Any tips on what kind of cron job to setup to remove the logs on a daily basis?

Was thinking something like:

1 0 * * * find . -ctime +5 -name "*.log" | xargs rm -f

that would remove all logs over 5 days old...

-T