Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Exception Logger: Best Practices

I have just started using an exception logger (EurekaLog) in my (Delphi) application. Now my application sends me lots of error messages via e-mail every day. Here's what I found out so far

  • lots of duplicate errors
  • multiple mails from the same PC

While this is highly valuable input to improve my application, I am slightly overwhelmed by the sheer amount of information I'm getting.

What are your best practices for handling mails from your application?

like image 328
Andreas Avatar asked Jan 21 '09 10:01

Andreas


1 Answers

If you get to much information as it is currently the case you are not getting any information at all.

So I would say categorize your errors into groups, like WARNINGS, FATAL ERRORS, etc. Then limit your emails to the most important messages (FATAL). Apart from that review your logs on a regular basis (day, week ...).

like image 160
Drejc Avatar answered Sep 25 '22 22:09

Drejc