vote up 9 vote down star
2

I'm looking for a logging framework and it seems log4net is or was very popular. The last release was over 2 years ago. It has not been updated for .net 3.0 or 3.5 or even visual studio 2008. Is there something more recent (other then entlib) I should be considering?

flag
8  
Does something like a logging library need constant updating? I've used it and it works pretty well. – Min Nov 2 at 21:41
EntLib is NOT something you should be considering. Use log4net – Krzysztof Koźmic Nov 2 at 21:47
What is your reasoning for 'not' using EntLib? Isn't EntLib 'best practice' code? – Chris Nov 2 at 22:27
Entlib is nice and all but I happen to think it's like using a mac truck to kill a house fly. It's not out of the running since it's the most recently updated logging framework. – Chip Nov 3 at 1:19
log4net is not dead, check the source rep and you will see that there is still activity in there. And as others have stated here, if a library works and works well: use it! – Peter Lillevold Nov 3 at 8:55
show 1 more comment

2 Answers

vote up 3 vote down check

Log4j (which was the basis for log4net) hasn't been updated in years. There are other alternatives from the same author (slf4j and logback) and others, but log4j is still used plenty and plenty viable. It isn't dead, it just got to the point where there was nothing more really was needed for it. Nothing that justified the work or wouldn't break backwards compatability. When that happens to a commercial project, the company has to invent a whole other purpose for the product or do something else and the product does indeed die. In open source, not really.

As a point of comparison, JUnit was basically going nowhere for years. Then Java got annotations, JUnit got competition (TestNG) and it is suddenly moving along again. Now the original developers may not end up being around in every case, but then the project would be forked or adapted. For example, TestNG allowed a smooth migration path from JUnit.

So the bottom line is if it is popular and used, it will not die on you.

link|flag
vote up 6 vote down

log4net is a port of something originally written in java. The port is more or less complete.

Additionally, the port targeted the .Net 2.0 runtime and .Net 3.0 and .Net 3.5 are also built on top of that same runtime. Therefore you can load log4net into Visual Studio 2008 and use it in a .Net 3.5 project if you want to. So as I understand it there's no real need to make a new version specifically for .Net 3.5 or Visual Studio 2008 at the moment. Visual Studio 2010 may of course change that (new runtime).

link|flag
Joel I agree with you in theory. Stable and it has the features but in software stagnation = death. Don't want to invest the time if that is the case. – Chip Nov 2 at 21:53
Well, vs2010 beta 2 is available now and includes a go-live license. So it might be worth checking whether there's any movement towards an eventual release for .Net 4. – Joel Coehoorn Nov 2 at 22:15
1  
I don't think it's dead as we're quite satisfied logging via UDP to a (win) syslogd with it. One could say it's (almost) feature complete which might be an explanation for the "missing" recent releases. – andyp Nov 2 at 22:22

Your Answer

Get an OpenID
or

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