Search code examples
error-handlingcustom-error-handling

What error logging web services or apps exist that log handled and unhandled exceptions?


I know about ELMAH, but that only logs unhandled errors. I need something that logs ALL errors (handled and unhandled). Does anyone know of such a program or service which does this? Preferably something open source that can work on any platform using any language, though I'm willing to consider other projects that are similar to ELMAH and log all errors (handled and unhandled).

FYI, I also know about log4net and that would be ideal but I hear it's very complicated and I'd like something that's simple to implement.

Thanks in advance!


Solution

  • log4net isn't that complicated and there are tons of examples of how to use it. another one you might consider which is a bit simpler than log4net is nlog.

    i'd suggest spending a few hours trying some examples of both of these. i am sure you'll see that they are actually pretty straight forward to implement.