13
votes
6answers
2k views
What would a Log4Net Wrapper class look like?
Greetings,
I have been looking for a logging framework for .net (c#) and decided to give log4net a go after reading up on a few question/answer threads here on stackoverflow. I se …
11
votes
7answers
567 views
Log4net/Logging - What have you found to be useful?
I just started using Log4Net and was looking to see what you have found to be useful in your logging experiences.
What types of things have you found to be useful to log; what end …
9
votes
13answers
1k views
Preferred logging infrastructure for .Net
What is your preferred logging infrastructure for .Net - NLog, log4net, other? Please, specify why you would use one vs. another (pros and cons).
Edit: I find it really difficult …
8
votes
2answers
178 views
Is log4net dead?
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 s …
7
votes
3answers
393 views
How to use log4net with Dependency Injection
I'm trying to figure out what the right patter and usage of log4net is with a dependency injection framework.
Log4Net uses the ILog interface but requires me to call
LogManager …
7
votes
4answers
1k views
Is log4net much slower than System.Diagnostics.Trace?
I'm investigating the differences between using log4net and System.Diagnostics.Trace for logging, and I'm curious about the performance differences I've observed.
I created a test …
7
votes
7answers
2k views
What’s your favorite (free) log viewer for EntLib or Log4Net?
Currently we have Enterprise Library Logging going to the Event Log & a rolling flat file, but I'd like to implement database level logging so that I can have much better brows …
6
votes
4answers
946 views
What do you have in your log4net config? Hacks, optimizations, observations?
This is my log4net config file
<?xml version="1.0" encoding="utf-8" ?>
<log4net debug="true">
<appender name="ConsoleAppender" type="log4net.Appender.Console …
6
votes
3answers
969 views
Log4Net: Rolling File appender, define extension
Hi,
I want my logfile to look something like this:
2009-02-13.log
but the problem is that I can't seem to find any way to add the .log extension.
I've tried a lot of things but …
6
votes
3answers
402 views
log4net/c# - Different layout based on the level
Hi,
Is there any way to have different layout based on level of the log message when using log4net? Say, if it is a fatal error, I want to see all kind of information possible - c …
5
votes
4answers
173 views
At what stage do you add logging & tracing in OO?
I'm interested at what stage in your development do add logging and/or tracing to your applications?
I'm working with a .Net stack and log4net (via commons.logging). Generally tak …
5
votes
4answers
541 views
Best practice(s) for on screen real-time log viewer for log4net
I have a multi-threaded C# application that use log4net for logging capabilities. Mainly the RollingFileAppender.
I want to offer the capability for the user to view the activity …
5
votes
4answers
1k views
log4net versus TraceSource
In this thread many people have indicated that they use log4net. I am a fan of TraceSources and would like to know why log4net is used.
Here is why I like trace sources:
Plugga …
5
votes
2answers
953 views
log4net - When to use ‘nested diagnostic context’ (NDC)?
Playing with log4net, I have seen the possibility to use a per-thread stack of context labels called the NDC.
The labels pushed on this stack are displayed in a PatternLayout by …
5
votes
2answers
1k views
Log4Net: Programmatcially specify multiple loggers (with multiple file appenders)
How to (programmatically, without xml config) configure multiple loggers with Log4Net?
I need them to write to different files.
