Try this:
find /.../exp -name \*.log -mtime +60 -exec rm -f {} \;

This short script will delete the files older than 60 days.

Hope it helps

dragon