I currently have a C# ASP.NET application and would like to start handling exceptions in a smart, unified way.
What tools or Nuget packages are recommended for this? Things like ELMAH.
Thanks
I currently have a C# ASP.NET application and would like to start handling exceptions in a smart, unified way.
What tools or Nuget packages are recommended for this? Things like ELMAH.
Thanks
For exceptions, ELMAH
is best for unhandled exceptions, in my experience. Whereas Log4Net
is good for logging purpose because it is very configurable in multiple different ways and purposes.
For more info, check this out: https://www.loggly.com/blog/benchmarking-5-popular-net-logging-libraries/ Which log utility is good for .NET application in C# (ASP.NET, WinForms)?