2
votes
2answers
266 views

Using .NET Trace and then NLog or log4net etc, as a listener

I would like to avoid writing my own generic logging interface, and rather use built in Trace funtionality, which to start with doesn't require any logging library. Before I address logging libraries, ...
2
votes
2answers
107 views

.NET: Logging entry / exit without AOP?

I want to be able to log when code execution enters a method and then exits, I was wondering is anyone has any comments on the best way to achieve this? I know an AOP way of injecting the logging ...
0
votes
1answer
65 views

NLog limit the number of times same error is logged within set period

We are using NLog to send email messages whenever a 'serious' error occurs. It might be happening very often in some cases generating too many messages. Is there a way to make NLog limit the number ...
0
votes
3answers
91 views

Important but non-fatal log messages in logging frameworks (log4j, log4net, log4php, log4cxx, NLog)

In certain applications, there are important messages you always want to log (such as the application starting up and shutting down) regardless of the current log level setting. The only way to ...
3
votes
2answers
226 views

How to organize centralized logging?

The situation is: we've got a number of working application instances, developed on C#. We want them to log in one place (that could be a file). As far as I know log4net and NLog can send logs via ...
3
votes
1answer
209 views

Custom NLog Appender

I trying to write custom appender for logging in NLog. I saw some examlpes for log4net where should write appender which is inherit from abstract class AppenderSkeleton. Can anyone name the analog ...
1
vote
2answers
529 views

Log levels: Would you consider DEBUG finer than TRACE?

My question originates from this question, where one of the comments suggests that a DEBUG log level is finer grained than TRACE. Looking at what TRACE and DEBUG means in .NET, this seems to make ...
1
vote
1answer
207 views

Combining NLog and log4net

My project uses both NServiceBus and RavenDB. NServiceBus uses log4Net, and RavenDB uses NLog. How should I handle logging in my project? Do I need to pick one and somehow configure one of the ...
2
votes
1answer
186 views

Does NLog have an equivalent concept to log4net's ILoggerRepository?

I'm migrating from log4net to nlog in the hopes of resolving a difficult-to-reproduce deadlock. In our application, we use multiple named log4net Repositories from LogManager.CreateRepository. That ...
3
votes
5answers
201 views

Logging with backup appender

Is there any .NET logging framework that have ability to switch appender if something is wrong with current one. Actually what I want is following: If I'm using database appender and when something ...
3
votes
2answers
1k views

log4net filter - how to write AND filter to ignore log messages

I am struggling to write an AND conditional filter in log4net. Had it been nLog, I could have written it this way: <logger name="*" minlevel="Info" xsi:type="NLogLoggerRule" writeTo="FooLogger" ...
1
vote
2answers
268 views

Do I need use logging library? [closed]

I write a wpf app using mvvm pattern and I need to implement logging system. The log need contain unhandled exceptions and events that I raised manually when something happen. Also I need to have ...
9
votes
4answers
2k views

decent log viewer that works with NLog [closed]

What would be a the best viewer that works well with NLog when I have the following requirements: I need to view logs offline (files) and online (live) for offline I need to be able to select and ...
2
votes
1answer
1k views

How do I switch from Log4Net to NLog in Quartz.Net?

My company's standard logging tool is NLog. I'm trying to introduce Quartz.net and was asked if it could use NLog instead of Log4Net. I know I can recompile to use NLog, but I'd like to do it from ...
1
vote
1answer
1k views

Logging frameworks and multithread compatibility

Note that I have seen these questions here on SO (which discuss the thread safety of log4net) and I suspect that they answer my question, but I am going to ask anyway: Multithread safe logging ...
0
votes
1answer
171 views

Does Logger.Write method in EL has missing overloads? Other logging framework offer these APIs?

I have recently start using Enterprise library 5.0 logging block and have two observations. My format for logging is timestamp, severity and the message itself. I could not find any overload of ...
9
votes
5answers
7k views

Enterprise Logging Block vs NLog vs log4net

I need to use a logging library in my project and considering between Enterprise Logging Block vs NLog vs log4net. I found some links on the comparison but most of those are quite old and complaint ...
0
votes
1answer
114 views

Looking for a Split View Debug Viewer to visualize Logs of Asynchronous Systems

To visualize asynchronous log output, I am looking for a log4j/net compatible debug viewer with a split view that shows log lines selectively on the left or right. The selection should be based on a ...
1
vote
2answers
501 views

Configuring log4net to write to different files based on log level

I'm setting up log4net and want to write debug messages in "debug.log", info messages in "info.log" and so on. To this end, I use several appenders, such as <appender name="DebugLogger" ...
3
votes
5answers
4k views

Capture username with log4net

I currently write all log4net events to a database, and it seems to work just fine. To capture the logged in user account I use this piece of code: HttpContext context = HttpContext.Current; if ...
13
votes
2answers
3k views

When should I use Tracing vs Logger.NET, Enterprise Library, log4net or Ukadc.Diagnostics?

How do I choose between standard tracing, Logger.NET, Enterprise Library, log4net or Ukadc.Diagnostics? Is there a situation where one is more appropriate than the other? ... what would that be? ...
1
vote
1answer
1k views

Configure log4net or NLog with XML from code

Recently I have been working on a project where, among other things, we want to provide a centralized configuration system. We are using WCF, Silverlight, C#, etc to create a distributed system of ...
3
votes
1answer
2k views

Custom log4net property PatternLayoutConverter (with index)

Is it possible to create a log4net custom PatternLayoutConverter that allows an "index" value to be configured? I know about the "property" conversion string that allows you to write code like this: ...
1
vote
3answers
776 views

NHibernate with NLog or Log4Net or something else?

I want to use NHibernate in my project, and it comes with log4net by default. In my opinion, it would be a wiser choice to go for Nlog as it still gets updates, log4net on the other hand is ...
8
votes
1answer
2k views

What is the difference between log4net.ThreadContext and log4net.LogicalThreadContext?

log4net provides two different "thread context" objects: ThreadContext and LogicalThreadContext, each of which has a property bag, Properties. ThreadContext has a ThreadContextProperties bag while ...
17
votes
1answer
7k views

Logging and WCF

I have seen many other questions on logging. Best practices. What logging platform is best. Etc. Here are some links from here on SO with very good discussions on the topic: logging best practices ...
22
votes
4answers
7k views

Dependency injection and named loggers

I am interested in learning more about how people inject logging with dependency injection platforms. Although the links below and my examples refer to log4net and Unity, I am not necessarily going ...
2
votes
3answers
464 views

Suggestions for hosted log server? [closed]

I'm looking for recommendations for a hosted service to collect logging information from client applications. The service would preferably be a high-availability service using a cloud infrastructure ...
32
votes
6answers
4k views

Why do loggers recommend using a logger per class?

As per NLog's documentation: Most applications will use one logger per class, where the name of the logger is the same as the name of the class. This is the same way that log4net operates. Why ...
3
votes
2answers
1k views

How can I enable logging with Ninject?

Is there a way to get Ninject to log out what it is doing? In particular I'd like to see when objects are being created. As I have a mix of transient and singleton objects it'd be very useful for ...
0
votes
2answers
816 views

How to use NLog/Log4Net to automate database change tracking?

I am aware of many table auditing methods. Some are trigger based and require triggers on each table to be audited. SOme have limitation based on column datatype. How can I use a logging framework ...
249
votes
13answers
40k views

log4net vs. Nlog [closed]

Anyone have experience for both? How do they stack up against each other? We are planning on using one of them for logging in an enterprise application. References: log4net nlog EDIT: We have no ...
3
votes
3answers
2k views

forward from log4net to NLog

In my current project I'm using two libraries where one is using log4net and the other NLog for its logging. I'm personally prefer NLog so it is used in my application as well. I'm not knowing much ...
3
votes
5answers
1k views

Logging Library for .NET Compact Framework?

Any good logging libraries that support .NET compact framework?