Log4Net basics with a Console Application (c#)

Tim goes through quite a bit, I just want to cover the very bare minimum for getting log4net to work in a console application.

Step 0 – Reference Log4Net

Using NuGet this is really easy – but no matter how you do it, you should end up with a reference to log4net in your project.

Log4Net

Step 1 – Add an entry to AssemblyInfo.cs

Add the assembly for the log4net.config to AssemblyInfo.cs

[assembly: log4net.Config.XmlConfigurator(Watch = true)]

Step 2 – Config settings file for App.config

Add a config file called App.config to your solution if it is not there already…

I added the following config settings within this file as follows:

### Step 3 – Create an instance of a logger and call logging To create an instance of a logger, there are a couple of ways you can do this…. One suggestion by Tim is to add the following line within each class where you want to have logging… private static readonly log4net.ILog log = log4net.LogManager.GetLogger (System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); I am not sold on this approach, this is something where I would use Dependency Injection to inject the logger, but for a simple console app example this would complicate things, so I would go with the following approach just to get things working… class Program { static void Main(string\[\] args) { log4net.Config.BasicConfigurator.Configure(); ILog log = log4net.LogManager.GetLogger(typeof(Program)); log.Debug("This is a debug message"); log.Warn("This is a warn message"); log.Error("This is a error message"); log.Fatal("This is a fatal message"); Console.ReadLine(); } } ### Step 4 - Run the application Simply run the application and you should see log file being created. Local Disk (C)\_2012-01-30\_10-28-10_2012-01-30_10-28-10_thumb.png "Local Disk (C)_2012-01-30_10-28-10")_2012-01-30_10-28-10_2.png)
This article is part of the GWB Archives. Original Author: MarkPearl

New on Geeks with Blogs

  • We Won The One Award I Actually Care About

    Full Scale made the Inc. 5000 for the fifth year straight, the 12th listing across my three companies. Here is why the one award you cannot buy is worth stopping for.

  • Your Customers Build the Features Now

    I let a tool I liked sit dead for a year rather than build the features I wanted. An MCP server meant I never had to, and your customers can do the same to your product.

  • Get the Size of a Directory in Linux the Easy Way

    du -sh for the quick answer, ncdu for the cleanup, df for the disk itself: every command for checking directory size in Linux, plus why du and df never agree.

  • Vim Search and Replace: The Ultimate Guide

    One :%s command replaces every match in a file before a find dialog would even open. The Vim substitute patterns worth the muscle memory: flags, ranges, capture groups, and multi-file edits.