Reviewing Production Runtime Errors In Clean Way

I was wondering how other developers research/review runtime error logs generated by yii from the production environment in a "friendly" way. Do you guys just download the file and review? Or should I write something to parse the file in my administration area (sort of create an interface)? Or do you send the errors to a service like sentry to take care of this?

Thanks for any ideas.

  • Bryan

I use sentry to handle this http://www.yiiframework.com/extension/yiisentrylog, so I could receive any error report ASAP and make the patch right away :)

I log them to the DB and run a cron job (Yii command) to email me with any errors.