Tagged Questions

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 ...
3
votes
3answers
451 views

Infinite number of backup files with RollingFileAppender

Do you know a way to create an infinite number of backup files with the RollingFileAppender? When I don't specify any maxBackupIndex at all, I end up with only one backup file.
2
votes
1answer
964 views

TextWriterTraceListener trace file too large

I am using C# System.Diagnostics.TextWriterTraceListener to print trace. But the trace file becomes too large (hundreds of MBs). I want to change the behavior of TextWriterTraceListener, that if the ...
2
votes
2answers
3k views

Can you make the Tomcat 6 stdout.log file behave like a log4j DailyRollingFileAppender?

We are using the Windows installation of Tomcat 6. By default, the log4j output for our app goes to the ${catalina.base}/logs/stdout_.log file. This log file only rolls over when we restart Tomcat, ...
1
vote
1answer
203 views

LogBack RollingFileAppender Not Writing Log File (Though FileAppender works)

I'm trying to programmatically configure LogBack's RollingFileAppender (ch.qos.logback.core.rolling.RollingFileAppender) and it doesn't seem to be working. When I'm using FileAppender, everything ...
1
vote
3answers
518 views

Log4Net not rolling on MaxFileSize

Somehow my log4net not rolling to a new file when the old log file exceeds the MaxFileSize and also stop writing log information to the already exceeded one. But when I restart the server, it did ...
1
vote
1answer
785 views

Log4j DailyRollingFileAppender

I have a log file currently configured to roll over every hour. When it is first created it is called logfile.log, and once it rolls over it is renamed to logfile.log.YYYY-MM-DD-HH. What I would like ...
1
vote
1answer
247 views

Wrong timestamp in log4j XMLLayout

I set my log4j configuration to use two appenders (ConsoleAppender and RollingFileAppender) the ConsoleAppender is using this layout (PatternLayout: ConversionPattern=%d [%t] %-5p %c - %m%n) and the ...
1
vote
2answers
9k views

Log4Net RollingFileAppender with composite rolling style is overwritting data

I have a Log4Net RollingFileAppender that is configured as: <configuration> <configSections> <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, ...
0
votes
1answer
176 views

Make log4j DailyRollingFileAppender roll over date OR size, whichever comes first

I know that log4j provides RollingFileAppender and DailyRollingFileAppender classes, however, DailyRollingFileAppender does not support MaxFileSize property. How do I tweak the behavior of log4j so ...
0
votes
1answer
67 views

Programmatically Enable Logback in Debug Mode?

I was wondering if there is a way to enable debug mode programmatically. Since I'm not allowed to use configuration file, I'm currently configure everything programmatically. Recently, I ran into an ...