Tagged Questions
Log4net is a logging framework for .NET, initially ported from the log4j project.
131
votes
14answers
19k views
log4net vs. Nlog
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 ...
34
votes
3answers
3k 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
...
34
votes
15answers
5k 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 to "accept" an ...
32
votes
7answers
7k 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 see people mentioning ...
26
votes
3answers
6k views
Log4Net: Rolling File appender, define extension
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 nothing helps.
This is ...
25
votes
2answers
4k views
Eliminate Duplicate Logging in log4net
I have a program that makes many log4net calls to the "myprogram" loggers. It also calls other code that makes log4net calls to other loggers. I want to capture all logs higher than INFO for ...
24
votes
5answers
5k 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:
Pluggable listeners - XML, ...
22
votes
1answer
11k views
log4net with .NET 4.0
I've thrown together some code to tinker with the new .Net 4.0/VS 2010 pieces, but I can't seem to find a build of my logging framework of choice (log4net) for 4.0, and I'm getting reference errors ...
22
votes
4answers
2k 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 studio 2008. Is there ...
21
votes
7answers
1k 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 ...
21
votes
8answers
2k 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 ended up being just ...
21
votes
2answers
4k views
How to log Trace messages with log4net?
I'm using log4net to log write log message to a rolling log file.
Now I would also redirect all trace messages from System.Diagnostics.Trace to that log file. How can I configure that? I tried to ...
21
votes
7answers
8k views
What's your favorite (free) log viewer for EntLib or Log4Net? [closed]
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 ...
20
votes
5answers
9k views
log4net vs Enterprise Library, which is better? faster?
Anyone know of some performance comparisons of the latest version Enterprise Library and the latest version of log4net?
Any technical reason why I should choose one over the other?
19
votes
1answer
3k views
Log4Net and .NET 4.0 RC
I tried to compile a project dependent on the Log4Net logging framework using .NET 4.0 RC and ran into some problems.
Out of the box (just changing the target to .NET 4.0), it no longer works, a ...
19
votes
6answers
14k views
Log4Net and .NET 4.0
There have not been any log4net release for some time. This has not presented any problems with 3.5, but what about .NET 4? Has anyone heard any rumblings about a release to support the version 4 ...
19
votes
8answers
7k views
How to configure log4net programmatically from scratch (no config)
This is a Bad Idea, I know, but...
I want to configure log4net programmatically from scratch with no config file. I'm working on a simple logging application for me and my team to use for a bunch of ...
19
votes
5answers
8k views
Log4Net: set Max backup files on RollingFileAppender with rolling Date
I have the following configuration, but I have not able to find any documentation on how to set a maximum backup files on date rolling style. I know that you can do this with size rolling style by ...
18
votes
5answers
10k views
log4Net config in external file does not work
We are using log4net and want to specify it's configuration in an external config file (as we have done with other sections). To do this we have changed the log4net section in the App.config to:
...
...
16
votes
5answers
3k views
Disable NHibernate logging
I have an empty app.config file, but I still get NHibernate debug logs
NHibernate: SELECT this_.LogID as LogID71_0_, this_.Level as Level71_0_, this_.Message as Message71_0_, this_.EventTime as ...
16
votes
4answers
6k views
log4net file names based on GlobalContext properties
I'm trying to customise a log4net file path to use a property I have set in the log4net.GlobalContext.Properties dictionary.
In my application code:
...
14
votes
6answers
13k views
Log4Net.How can I change the file location programmatically c#?
I am totally new to Log4net.
I have managed to get something going by adding a config file and simple logging
I have hardcoded the value to be "c:\temp\log.txt" but this is not good enough
The logs ...
14
votes
2answers
9k views
log4net argument to LogManager.GetLogger
Why do most log4net examples get the logger for a class by doing this:
private static ILog logger =
LogManager.GetLogger(
System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
...
14
votes
3answers
8k views
How to log SQL calls with NHibernate to the console of Visual Studio?
I have the following configuration file for NHibernate:
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
...
14
votes
5answers
4k 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 application to ...
13
votes
4answers
310 views
how do I work around log4net keeping changing publickeytoken
We have an asp.net 4.0 project which uses a couple of frameworks which is dependent on log4net version 1.2.10.0. Today I tried to include a new framework which is dependent on log4net version ...
13
votes
7answers
3k views
What is the difference between log4net and elmah?
Some people are using elmah instead of log4net, what makes it better?
I found out about elmah here - How to do logging in c#?
13
votes
2answers
4k views
Intermittent log4net RollingFileAppender locked file issue
We are seeing an intermittent issue on development and production machines whereby our log files are not getting logged to.
When running in development and debugging using Visual Studio we get the ...
13
votes
7answers
19k views
Log4Net configuring log level
How do I make Log4net only log Info level logs? Is that even possible? Can you only set a threshold?
This is what i have, and it logs Info and above as i would expect. Is there anything i can do ...
12
votes
1answer
273 views
log4net doesn't pass verification when compiling
https://github.com/apache/log4net
I am compiling log4net from the source above, but it doesn't pass verification:
[IL]: Error: [log4net.dll : ...
12
votes
3answers
2k views
Can you pull the connectionString for a log4net AdoNetAppender from elsewhere in a web.config file?
Hey all. This is my first StackOverflow question.
I'm already have a db connection string in my web.config file. I scanned the log4net docs, but can't seem to find a way to use it within the ...
12
votes
1answer
951 views
Log4net randomly stops logging
I am currently building an ASP.Net-MVC Application using log4net for logging, but the logger seems to just stop at random. It will happily log for awhile, and then stop, and then will start again ...
12
votes
6answers
4k views
VS2005: Assembly '<assembly>' is incorrectly specified as a file
i've added a reference to the log4net assembly dll to my project.
When i build i get a warning saying:
Warning Assembly 'Lib\log4net.dll' is
incorrectly specified as a file.
i look up the ...
12
votes
5answers
23k views
Setting a log file name to include current date in Log4j
I would like to set the log file name for a log4j and log4net appender to have the current date. We are doing Daily rollovers but the current log file does not have a date. The log file name format ...
11
votes
1answer
3k 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
...
11
votes
3answers
7k views
How to specify common application data folder for log4net?
I want log4net to write log files (using RollingFileAppender) to a subfolder of the common application data folder (e.g. C:\Documents and Settings\All Users\Application Data\Company\Product\Logs).
...
11
votes
2answers
5k 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 specifying the %x or ...
11
votes
3answers
19k views
How do I configure a RollingFileAppender to roll by date and size with log4net?
I am configure log4net to use a composite RollingFileAppender so that the current file is always named logfile.log and all subsequent files are named logfile-YYYY.MM.dd.seq.log where seq is the ...
11
votes
9answers
11k views
log4net with ASP.NET 3.5 problems
I'm having some trouble getting log4net to work from ASP.NET 3.5. This is the first time I've tried to use log4net, I feel like I'm missing a piece of the puzzle.
My project references the log4net ...
11
votes
11answers
12k views
Log4Net “Could not find schema information” messages
I decided to use log4net as a logger for a new webservice project. Everything is working fine, but I get a lot of messages like the one below, for every log4net tag I am using in my web.config:
...
10
votes
4answers
1k 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 ...
10
votes
3answers
2k views
Log4Net performance
I have written a C# app that runs constantly in a loop and several threads write to a log4net file.
The issue is that the longer the app is running, the more time it takes to complete a loop. I have ...
10
votes
2answers
3k views
Is there a log4net version for Silverlight?
Is there a log4net version built against Silverlight somewhere?
Failing that, can someone suggest an alternative logging framework to use in Silverlight?
10
votes
1answer
7k views
Log4Net: Programmatically 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.
9
votes
3answers
552 views
BackgroundWorker & Timer, reading only new lines of a log file?
My application writes a log file (currently using log4net). I'd like to setup a timer and a background worker to read the log file and print its content into some control in my form, while it's being ...
9
votes
3answers
4k views
Log4net does not write the log file
I created a simple scenario using Log4net, but it seems that my appenders does not work because the messages are not added to the logfile.
I added the following to the web.config file:
...
9
votes
4answers
4k views
Configure Log4net to write to multiple files
I'd like to write log to 2 different log files from the same process.
is that possible thing to do using log4net?
I'll need to write separate messages to each log file. how can I write a message to ...
9
votes
4answers
4k views
How do you configure and enable log4net for a stand-alone class library assembly?
Background
I am writing a class library assembly in C# .NET 3.5 which is used for integration with other applications including third-party Commercial-Off-The-Shelf (COTS) tools. Therefore, sometimes ...
9
votes
5answers
1k views
Something is wrong with Log4Net?
I've been using Log4Net on a few high traffic websites for a couple of years, and I cannot say that I am a happy customer. So, wanted to see if anybody else has the same concerns:
The CPU overhead ...
9
votes
3answers
3k views
Using log4net and where to implement it and usign with elmah?
does anyone have experience with log4net, i have been looking at elmah which is great. But i wanted a little bit more control i.e. to use logging not only in asp.net but also in wpf.
Anway i decided ...