Showing posts from February, 2017

Configure NLog for ASP.NET MVC in 3 Steps

Error Logging is one of the key attributes when developing ASP.NET Web application. NLog is a great open-source logging tool that allows developers to easily and efficiently implement logging framework. In this post, I will show the steps needed to configure and use NLog in your MVC web application. Step 1: Installing NLog (NLog Config) NLog can be downloaded from  NuGet .  You can use the GUI or the following command in the Package Manager Console: PM> Install-Package NLog -Version 4.4 .1 That'…

Load More
That is All