vote up 39 vote down star
23

Hi,

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. There are two questions I have if anyone knows the answer.

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.

Thanks Daniel

flag

26 Answers

vote up 3 vote down check

Hands down, the Enterprise Library. You can take a look at their logging solution here.

link|flag
8  
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
3  
I'm also concerned that this was marked as the answer. – sontek Nov 6 '08 at 8:13
No need to be concerned. My final solution went ahead with the enterprise library for a few reasons, firstly we were using a few other features of the library, secondly I liked the implementation and thirdly it was powerful enough for our needs. – Odd Nov 7 '08 at 1:03
The answer wasn't elaborate, but it made the suggestion that assisted me in finding the correct solution. I have elaborated as to why here: oddiandeveloper.blogspot.com/2008/09/… – Odd Nov 7 '08 at 1:05
4  
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 at 18:42
show 1 more comment
vote up 0 vote down

For those who are using log4net, I've made a simple console to display and filter the logs by configuring receivers (the same way you configure appenders).

I mainly use it with the .NET Remoting appender/receiver, both localy and remotely ; a lot of users are using it with the UDP appender/receiver also.

It's an open source tool developed in .NET, available on CodePlex: http://log2console.codeplex.com/

link|flag
vote up 0 vote down

Take a look at GIBRALTAR. It's a great logging tool that combines the goodness of ELMAH, log4net, perfmon and other tools in one very nice package. It works for desktop or ASP.NET applications and is very easy to integrate.

DISCLOSURE: I'm biased. I've been writing logging tools for 10 years and spent the last two years along with the other members of my mISV writing Gibraltar.

For a quick peek, check out GIBRALTAR in action on YouTube.

Cheers, Jay Cincotta

P.S. We natively integrate with .NET Trace/Debug/Console and have adapters for log4net and the Object Guy's Logging Framework (BitFactory. We'll also be posting an adapter for PostSharp later this week.

link|flag
is Gibraltar free ? – Ram Dec 18 at 13:38
vote up 0 vote down

haven't found a great one yet. Log4net is about 75% ok, but : -- it's not asynchronous, so you tie up cycles waiting for logs to write -- it really, reeeeaally sucks if you're using multi-threaded apps. It's more or less non-threadsafe. -- I'm having all kinds of issues running it on 64 bit and -- it's a pain to debug (not impossible, but I spend more time messing with log4net now than I do with business code).

I really don't understand why MS doesn't come out with one as part of .Net

link|flag
vote up 0 vote down

Hi, For asp.net projects I find that a combination of:

  • Trace.axd
  • Log4net - logging.apache.org/log4net/index.html
  • ELMAH - code.google.com/p/elmah/
  • PostSharp - www.postsharp.org/

Works great. Log4Net for the main logging engine. ELMAH for it's kick-ass auto logging and emailing. I use PostSharp to modify the details about the program flow for the namespaces that I am interested in knowing about, like if you want to be able to trace logic flow and spit out return and input values.

The combination of these allows me to garner as much detail as I want. Which really helps when trying to debug a problem.

Cheers, Lance

link|flag
vote up 0 vote down

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-admin has easy access to it to decide further steps taken or store them in the event log where the admin 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 loggin. Both weaved in with PostSharp

link|flag
vote up 1 vote down

Another logging question! Well, as I've said already, we've been using The Object Guy's Logging Framework for years. It is in several of our production applications. It is easy to use and easy to extend. You can't go wrong with it.

link|flag
vote up 1 vote down

This guy has an interesting take on logging frameworks.

link|flag
vote up 2 vote down

The code for Log4Net may be larger than the code for your entire project. It is bloatware! Try this if you want something that is easy to use and as flexible as you'll ever need.

link|flag
vote up 3 vote down

I don't have the reputation score yet to vote an answer up or down so i'll re-iterate what most have been saying here.

Log4Net is a brilliant solution for logging - you can write your own extenders if you want behavior that's not currently supported.

We've implemented it on an enterprise sized project and it's working a treat - very little bloat as it does exactly what you want it to do - logging - no frills, no fancy stuff, just logging.

So another ++ for Log4Net

link|flag
vote up 0 vote down

+10001 on log4net.

The appender model to pipe logging into multiple "sinks" as well as better buffering, ease of setup, the ability to output in the same format as java compoenents which might lie in your stack has made log4net my go to logging for the last 5+ years. Enterprise lib is heavy handed and has deployment headaches in writing to the event log by default.

As Ron Popeil sats, "set it and forget it!"

link|flag
vote up 5 vote down

One of the best kept secrets in the .NET Framework is the End to End Tracing capability. It's mostly associated with WCF but it works across client and server tiers. Check out Scott Hanselman's podcast for a good overview.

http://www.hanselminutes.com/default.aspx?showID=68

link|flag
vote up 0 vote down

I like log4net - it has good performance and is very flexible. More recently I've been using the logging in the MS Patterns and Practices Enterprise Libray 3.1 and 4.0 - the main reason being is the integration with the exception handling block and the policy injection - which brings with it elements of aspect orientated programming - I can add a LogCallHandlerAttribute to a method and have the entry and exit to the method automatically logged complete with the parameter values without writing a single line of code - add to this the other call handlers for exception handling and validation (from the validation block ) and you get a great productivity boost. the downside is that the entlib can be a pain to configure with lots of cruft to do in the app/web.config but they do supply a pretty nice configuration editor.

link|flag
vote up 0 vote down

ViewonLog is useful. The good thing about this logging tool is the customizable logging policy, you can change the logging policy in run-time very easily (in the UI).

link|flag
vote up 4 vote down

You could use Common.Logging. This provides a lightweight logging wrapper so that you can trivially change the underlying logging mechanism later if you need to. Since you are already familiar with log4Net, I'd recommend using it as the underlying logger.

link|flag
you got my vote! Common.Logging rocks :-) – gef Aug 11 at 18:04
vote up 4 vote down

I'd recommend NLog, it's as powerfull as Log4Net but with easier configuration. (IMO)

link|flag
vote up 2 vote down

I've used Log4Net, and it's fine, but I've always felt that it is a tad overkill. My usual approach is to implement a Logger class with methods like Error, Warning, Info and Debug which simply write to the Event Log using the standard .NET framework classes for that. I then set up an external monitoring tool, which will monitor the Event Log for specific types of messages and send emails or write to a database or whatever. The benefit is that you don't have to worry about a third party dependency, the code is really simple and you can find a cheap tool to do almost anything you want with it once it's been logged. I currently use PA Server Monitor, which is one of the best pieces of monitoring software I've seen in a while.

link|flag
Agree that Log4Net is overkill. It is not hard to write your own logging classes. – darasd Feb 25 at 9:47
1  
@codeflunky - Does your approach really save that much work over configuring log4net to configure SmtpAppender and EventLogAppender? – Scott A. Lawrence Oct 7 at 19:02
1  
Why bother writing something new if it's already there? – Sosh Oct 15 at 16:55
vote up 29 vote down

A lot of people underestimate the power of built in Debug.WriteLine and Trace.WriteLine. With those you can actually define different locations to output (i.e text file, xml, or Console.Out) and you don't have to rely on any external dependencies.

The point of Trace.WriteLine and Debug.WriteLine is to give you the ability to monitor certain areas of your code when debugging or tracing but avoid cluttering your screen or hard drive with useless output when you aren’t. When most people stumble upon Trace/Debug they think it should “Just work”–without any setup–this isn’t the case.

Another great benefits of using Trace/Debug instead of the old Console.WriteLine is you can define exactly where to log to in your app config or with environment variables, so sometimes you might want direct output to the Console but other times you might want to log to a file.

To get your output from Trace/Debug you first need to define either DEBUG or TRACE in your preprocessor directives.

You can do this in code by placing:

#define TRACE

in your code or by defining it in Visual Studio.

after you have your preprocessor directives setup, you have to define where to log to. You can do this by defining it in your app config:

<configuration>
  <system.diagnostics>
    <trace autoflush="false" indentsize="4">
      <listeners>
        <add name="myListener" type="System.Diagnostics.TextWriterTraceListener" initializeData="TextWriterOutput.log" />
        <remove name="Default" />
      </listeners>
    </trace>
  </system.diagnostics>
</configuration>

and then you can start your logging with System.Diagnostics.Trace.WriteLine(”Hello World”).

To learn more about Trace/Debug check out:the docs here.

link|flag
I use a text writer trace listener for debugging log4net, and it doesn't scale at all well. It will break your app once the log file grows over a few 100mb. – Simon Gibbs Oct 19 '08 at 19:15
Note: If you build from within Visual Studio, the default Debug and Release configurations both define TRACE by default. See the project Properties editor. – gWiz Dec 2 at 1:41
vote up 3 vote down

Log4Net, because it just works. And it's extremely configurable. The Enterprise Library is constantly shifting. the Log4 stuff is pretty mature/stable. Who knows when Microsoft will drop the Enterprise Library.

No Thanks!

link|flag
vote up 1 vote down

i can vouch for log4net.. we use it in all of our .net applications (which are large multi-tiered enterprise scale apps)..

link|flag
vote up 2 vote down

I think that simple Windows event log or trace logging is often overlooked. For SQL-Server type transaction logs, there's System.IO.Log.

link|flag
Unless you have a mechanism for dragging your log events out of the event log I would avoid using it as a primarly logging repository. Log files are a lot easier to sift through. – Richard E Dec 12 '08 at 23:28
The Windows Event Viewer is as good as any other log viewer I've come across or built. – Mark Cidade Dec 13 '08 at 3:23
vote up 8 vote down

If you are looking for a simple non-bloat solution (the download is only about 100K and the actual dll about 40K), I've successfully used BitFactory on a number of projects.

It's small, configurable, reliable and free!

link|flag
Doesn't look free anymore: dotnetlog.theobjectguy.com/Download.aspx :( – program247365 Sep 21 at 18:59
+1 It's not free anymore, but it's really cheap :) – Mark Seemann Nov 26 at 16:02
vote up 0 vote down

Depending on what you're logging, Health Monitoring in ASP.NET is worth looking into for logging instrumentation info and extending it is fairly straightforward in most situations.

link|flag
vote up 7 vote down

Can't vote up, but +1 for Log4Net, and NLog seems good too.

http://www.nlog-project.org/

link|flag
vote up 13 vote down

The problem with the Enterprise Library is that it's extremely bloated if you're only using logging.

I suggest using Log4Net with a custom wrapper, so you're not tethered to that specific framework if you have a business need to change at a later date.

link|flag
Instead of a custom wrapper, consider using Common.Logging (see my answer) – Matt Howells Sep 19 '08 at 10:36
vote up 58 vote down

I don't see any reason not to use Log4Net for a large application. It scales extremely well. Search for other questions about logging, there have been several about how much detail to log and what tools to use. Personally, I've used Log4Net for projects with hundreds of classes and thousands of lines of code and never had an issue.

If you are familiar with it and it works, look no further.

link|flag
I use log4net and find it works well, however it is a little tiresome to set up for new projects, and if misconfigured just sits there silently rather than hinting at what might be wrong. – Richard E Dec 12 '08 at 23:27
2  
Tiresome to set up for new projects? Add a reference, add a line in Main or Global, copy-paste into app.config, that's it.... – Justice Feb 8 at 4:19
2  
@Richard E- it usually hints as to what is wrong if you have a Console window running... – RichardOD Sep 1 at 16:09
1  
@Richard E - Given a choice between sitting silently and causing the actual application to fail, I think the log4net team made the right choice for how log4net behaves at run-time. Configuration could be easier though. – Scott A. Lawrence Oct 7 at 18:54

Your Answer

Get an OpenID
or

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