I'm somewhat new to the .NET stack and I was wondering if there is an equivalent to slf4j for the .NET platform. For me, logging to a Facade and being able to swap out logging implementations as needed just makes sense. Furthermore, the wrapper APIs available in slf4j have saved me many times when I needed to use a third-party library that was coded against a single logging framework that I wasn't using.

Is there a project out there that acts as a facade between loggers like log4net, nLog and Enterprise Library? Are there wrappers that allow me to shortcut calls to those libraries and direct them to another library? Should I start out an open source project to do this myself? Is this question a duplicate because I don't know the right way to ask? Conversely, is the common way to do this using aspect orient programming?

link|improve this question

69% accept rate
Good question - i have this problem also. It just took me a few minutes to implement an ILog interface and implementation for my favourite nLog. Let's create a OS project - I would join :) – twk Apr 28 '10 at 22:28
1  
Been done already. See below for link to common logging for .NET. – Tom Cabanski Apr 28 '10 at 22:31
2  
There is also a SLF for .NET: slf.codeplex.com, based on the slf4j. – Steven Apr 28 '10 at 22:42
Steven, you should make that an answer to the question. – Elijah Apr 28 '10 at 22:51
feedback

3 Answers

Excuse I used this thing and I forgot it wasn't the Apache version. It's actually open-source and part of a project called common infrastructure. It is also called common logging. It works with MS Enterprise, log4net and others. It works well.

link|improve this answer
2  
Yep, Common Logging is THE logging facade for .NET – Steven Apr 28 '10 at 22:40
@Steven: True, but it's so out-of-date, unfortunately. – abatishchev Oct 31 '11 at 8:04
I would even advice against the use of logging facades. Proper dependency injection eliminates the use of any logging facade. – Steven Oct 31 '11 at 11:17
@abatishchev: Even so, after looking through the source code it looks like quite a well designed library. There are many nice features such as FormatMessageCallback. I am going to try it out and if it works for us, I will contribute updates where needed. – aaronc Jan 12 at 20:44
feedback

Take a look at Castle.Services.Logging.

Base code is here. Log4net adapter here. NLog adapter here.

It's pretty easy to write adapters to any other logging framework.

link|improve this answer
feedback

I'm incorporating Simple Logging Facade because it appears to support The Object Guy's Logging Framework for .Net out of the box.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.