Some people are using elmah instead of log4net, what makes it better?
I found out about elmah here - How to do logging in c#?
|
|
Elmah serves a purpose of tracking errors and exceptions for your web applications and allows you to easily log or view those exceptions via many different mechanisms (sql, rss, twitter, files, email, etc). If you have no built in exception handling Elmah will most likely get you want you are looking for in terms of exception handling in a web application environment. Log4net can be used for exception logging as well, however you might need to roll your own handlers to plug into your web application. Log4net will shine over Elmah if you need to do other types of information logging as log4net is a general purpose logging framework. Log4net can also be used in almost any .net application. |
|||||||
|
|
Log4Net is a general purpose logging framework with an API intended to be used within your application (web, console, dll, etc.).
ELMAH is an unobtrusive IIS plugin specifically for logging exceptions in a web application. You won't see a reference to ELMAH within your application, it doesn't have an API that you interact with. It uses the module and handler IIS extension points to bolt in the behavior. In addition it has a web front-end to view the errors that have occurred in your web application. Log4Net doesn't have a front-end, just a variety of log sinks (Appenders) that can send your log messages to things like log files, a syslog server, a database, etc. |
|||||
|
|
The key difference is that ELMAH logs unhandled application exceptions; log4net logs whatever you tell it to log. You can configure log4net to log unhandled exceptions, but ELMAH captures a wealth of useful information out of the box. |
|||||||
|
|
ELMAH works by creating an httpmodule that hooks into error events and then does logging. This can easily be thwarted and broken by bad design. Log4Net might require additional work upfront but if you use an AOP framework and apply it across your class or even the assembly, you can achieve far better exception logging with very little code and effort. ELMAH only works if it has access to HttpContext which can be hard to achieve in WCF services. So you would end up using som eother logger in WCF anyway. Why not just use one solution that is more universal. |
|||
|
|
|
Elmah :
Log4net :
|
|||
|
|
|
elmah is specially used for web applications while log4net is used on both web and windows applications. elmah has many advantages than log4net in web application |
|||||||||
|
|
Elmah is very poweful, but also very specific in what it does. It does alot of the work for you, whilst i believe Log4Net requires you to do the error handling and logging. |
|||
|
|