Recently the log4net team published new NuGet packages that support .NETStandard 1.3, which means it should work with .NET Core. I decided to spend some time today to make sure our Stackify logging libraries work with log4net and .NET Core. We already published updates for NLog and Serilog. It was about time we had log4net support out there as well.
Getting Started: Configure() log4net
Adding a reference to the log4net NuGet package was no problem. If you have worked with log4net for any amount of time, you know you have to add the magical line of code for configuring it. Although, you can see from my screenshot below that it doesn’t work like expected.
XmlConfigurator.Configure() requires some parameters that we didn’t usually provide in the past.
Configuration Workaround: Loading It Manually
Normally log4net is smart enough to load its configuration from a web.config or log4net.config file. In .NET Core, it doesn’t seem to know how. I searched all over the internet, looked through the log4net repo, downloaded the source, and beat my head on the wall to no avail.
It makes sense that it can’t read from a web.config/app.config because they don’t even exist in .NET Core.
But, it also doesn’t automatically try to read a log4net.config file. As a side note, NLog does the same thing. You have to manually configure it now in .NET Core.
After a little reverse engineering, I figured out how to manually load my log4net.config file and configure log4net.
var logRepository = LogManager.GetRepository(Assembly.GetEntryAssembly()); XmlConfigurator.Configure(logRepository, new FileInfo("log4net.config"));
I was able to get this to work with a .NET Core app targeting both netcoreapp1.0 and net452. Add that to your Program.cs as the first thing your code does.
log4net with .NET Core Is ALLIIVVEEE!
So after a little trial and error, I was finally able to figure it out. I hope this can be helpful to others who are trying to figure this out. They do list some limitations with the current 2.0.7 version of log4net. Hopefully, we see further improvements to all of this.
- Retrace vs Microsoft Application Insights – 14 Reasons to Choose Retrace - October 25, 2021
- How to Catch All Exceptions in C# & Find All Application Errors - August 19, 2021
- Web Performance Monitoring: A How to Guide for Developers - July 9, 2021
- What Is NullReferenceException? Object reference not set to an instance of an object - March 5, 2021
- ASP.NET Performance: 9 Types of Tools You Need to Know! - February 19, 2021