up vote 7 down vote favorite
share [g+] share [fb]

I'm looking for a good TraceListener for .Net that supports rolling over the log file based on size limits.

Constraints

  • Uses .Net built in Trace logging
  • Independent class or binary that's not part of some gigantic library
  • Allows rolling over a log file based on size
link|improve this question

43% accept rate
feedback

5 Answers

You could use Microsoft.VisualBasic.Logging.FileLogTraceListener, which comes built-in with the .NET Framework. Don't let the VisualBasic in the namespace scare you, you'll just have to reference the microsoft.visualbasic.dll assembly and it should work fine with C#.

link|improve this answer
Found this thread via Google... thanks csgero for pointing out the built in option... looking at the docs for FileLogTraceListener, it sounds perfect, and no need to deploy a 3rd party assembly. Being a C# programmer I never even knew about the Microsoft.VisualBasic namespace. – Chris Jester-Young Oct 9 '08 at 17:42
FileLogTraceListener, i.e. the base .NET Framework, covers what you need. If you want more advanced listener options, check out the Essential Diagnostics extensions (essentialdiagnostics.codeplex.com) – Sly Nov 25 '11 at 1:57
feedback

I have used both Log4Net and Nlog. I prefer NLog but really once they are setup you forget they are there anyway (untill something breaks, then your glad it is there!). there should be plenty of documentation on both out in the interweb

link|improve this answer
feedback

I'm a big fan of log4net (http://logging.apache.org/log4net/index.html), it's very easy to configure and supports just about any log type you want, but can have custom ones written as well.

It can also do different actions depending on the log level. We log all messages to a text file and Error -> Fatal send emails

link|improve this answer
problem is I prefer to use the integrated .Net trace logging – user17222 Oct 1 '08 at 7:36
Then check out the TraceAppender in it, that'll log to the trace of the app – Slace Oct 1 '08 at 7:54
feedback

I am using NLog and I am very satisfied. Source code is well written and it is easy to extend and modify. Documentation is good and it is very easy to configure.

Some Links:

link|improve this answer
feedback

Consider Enterprise Library Logging Application Block

Make sure to install only the Logging block, since EntLib installer checks all blocks by default.

link|improve this answer
EntLib Logging Application Block is complex to configure, slow, and has less functionality than the base System.Diagnostics in some cases! – Sly Nov 25 '11 at 1:59
feedback

Your Answer

 
or
required, but never shown

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