up vote 141 down vote favorite
80
share [g+] share [fb]

My team is about to start a new enterprise wide ASP.NET development project, quite possibly the largest undertaken by my department so far and the largest project that I've ever worked on. I'm looking for a good logging solution for the system.

Firstly, what logging tools are currently available and widely used?

Secondly, for an ASP.NET (probably MVC) enterprise applicaiton, which tool is most appropriate based on your experience?

So far I've used Log4net almost exclusively for all my previous projects. It's a fantastic tool, however I would like to see if there is anything I've not used out there before I start a project of this magnitude or if there is any reason I would not want to use Log4net for a project of this size.

link|improve this question
feedback

closed as not constructive by George Stocker, bzlm, Kev Nov 20 '11 at 14:59

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

34 Answers

1 2

If you want professional logging with a best practice concept that puts your data structured in a central database then you need to check out logdirector. You access the logdata in a browser and you can also set some user rights.

http://www.logdirector.com

link|improve this answer
show 1 more comment
feedback

What I haven't found yet in the posts is a clear distinction between tracing and logging. Think about e.g. why does almost every logging framework has an rolling(!) appender and tracing doesn't?

IMHO tracing should be off in production environments and only turned on to trace things when something bad or not expected happens. Logging on the other hand is always on because I log only exceptions or code blocks with outputs of high interest and store the information. I would send the logging informations over the wire to a central point like a database where an application administrator has easy access to it to decide further steps taken or store them in the event log where the administrator can also later collect them.

I would also send an Email when logging exceptions or not so common states of the application like "almost" timeouts occur. Tracing on the other hand can go to a local textfile because an experienced technician immediatly tries to find out what happens in the application.

I use System.Diagnostics.Trace for tracing and log4net for logging. Both are weaved in with PostSharp.

link|improve this answer
feedback

I am working on the troubleshooting of a huge application which did not use log4net. Then I came to know about Log4PostSharp. Using this, we can inject log4net code without writing any code. Have a look into this. This might be quiet useful.

link|improve this answer
feedback

Edit: I copied this from another one of my answers on the same topic. I've substantially changed the original answer because I'm tired of all the down-votes and can't delete the answer since it's the accepted answer.

ELMAH is particularly nice if you're using ASP.NET. One of my favorite features about ELMAH is not having to build the UI to view logged exceptions; ELMAH provides a handler that will report your exceptions. However, I've never used it for logging anything other than exceptions.

log4net, and Microsoft's EntLib are some other ideas that come to mind. These provide a lot more functionality than what you may need if all you really need is just exception logging.

Also, you may consider performance counters if what you're really trying to do is measure your application. Again, the benefit of using performance counters is that after publishing the data, you won't have to worry about build the UI to view/query the data.

link|improve this answer
28  
Hands down? I'm kind of surprised this got marked as the answer. Can someone please elaborate on what is good / better about Enterprise Library's logging? – Winston Fassett Oct 28 '08 at 20:24
11  
I'm also concerned that this was marked as the answer. – sontek Nov 6 '08 at 8:13
16  
I think the problem that people are eluding to is the definitive nature of the response with absolutely no discussion as to why. IMO the "answer" to this type of question should be a well-rounded discussion of the alternatives out there, along with the relative merits of each. Remember that this is not just for you, but also for other people who may ask this question in the future. – akmad Aug 17 '09 at 18:42
3  
I'd agree with akmad normally except it seems any time you have anything approaching a 'discussion' on here you need to beware the bandwagon of evangelists busting a nut to mark your post as subjective and close the question accordingly. – FerretallicA Jan 7 '10 at 22:37
3  
I think the downvoting is a bit harsh here. This guy didn't mark his answer and the right one, the question asker did! – badbod99 Sep 7 '10 at 15:42
show 6 more comments
feedback
1 2

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