Error Logging for MVC

What’s a good error logging tool for MVC applications?

There is a neat system called ELMAH that you can use. It’s web based and installs as a part of your entire web application.

Through configuration files, you can require authentication and assign roles pretty easily to protect the pages. It will show you all the logging information your application is producing.

You can install it into your MVC application with NuGet.

Here’s more information about ELMAH.

https://code.google.com/p/elmah/