Tagged Questions

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 ...
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 ...
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 ...
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
1answer
263 views

Log4net : Rolling file on utc date rather than server date

this is my log4net.xml file <dateTimeStrategy type="log4net.Appender.RollingFileAppender+UniversalDateTime" /> <lockingModel ...
3
votes
3answers
2k views

Force Log4Net RollingFileAppender to roll

According to the Log4Net documentation, the RollingFileAppender will only roll the log file when a message is logged. I need to log to this file, but import it every day into another database. I ...
2
votes
1answer
90 views

Previous filename in RollingFileAppender

I am using Log4Net for logging in an application I've written. For writing to the log file, I use a RollingFileAppender with 5 backups and a max filesize of 250KB. What I want to do is offer the user ...
2
votes
2answers
327 views

Have a Log4Net RollingFileAppender set to roll weekly

The DatePattern string needs to be something that the SimpleDateFormatter will accept. Unfortunately this means that, out of the box, this doesn't include being able to set the boundary to be a week ...
2
votes
3answers
843 views

Do you know of a log4net appender which rolls on date, but let's you limit the total number of files?

I need to define an appender for log4net in a way that I get one log file for each day, but the total number of files are limited to, let's say, 30. That is I want to keep only the logs not older then ...
1
vote
1answer
43 views

File Name issue with RollingFileAppender in Log4net

I have implemented RollingFileAppender to log my ASP errors and it works fine. Now i need to change the file names based on the date value. Currently my log file name is MyLog.log ,its max size is 1 ...
1
vote
1answer
62 views

log4net RollingFileAppender not “rolling” when programatically configured

I am attempting to programatically create a rolling file appender in C#. I'm using Visual Studios 2008. I am using log4net version 1.2.0.30714. My main issue is that my rolling file appender is ...
1
vote
3answers
493 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
371 views

Configuring log4net to Use Isolated Storage in WPF App

I'd like to use log4net's RollingAppender to write to isolated storage, but I can't figure out how to configure log4net to do so. To be clear, I'm trying to do this in an installed WPF application so ...
1
vote
1answer
157 views

logging each week via rollingFileAppender--log4net

is there a solution to make the log files be created each week by RollingFileAppender's datePattern? I know that yyyyMMdd is valid for each day but i couldn't find a solution for weekly logging. ...
1
vote
2answers
1k views

Configuring log4net appenders via XML file *and* code

I started to play with log4net today and so far, I really like it. In order to preserve our current logging functionality, the app needs to create a new log file whenever the application is started. ...
1
vote
1answer
647 views

Log4net RollingFileAppender doesn't roll over anymore after a couple of weeks

I'm using log4net (v1.2.9.0) in a web project. Everything works like a charm, but after a couple of weeks the RollingFileAppender stops to roll over. Instead every log message is appended to the same ...
1
vote
3answers
639 views

log4net :comparing adonetappender and rollingfileappender

I am trying to see which one of these appenders would perform better (the shorter the time, the better). RollingFileAppender or ADONetAppender? What are the other parameters I should consider when ...
0
votes
1answer
60 views

How to specify date interval?

I want to use RollingMode.Date to log by date. But default interval is one minute. I looked into source and saw, that class has protected enum RollPoint /// <summary> /// The code assumes that ...
0
votes
1answer
106 views

RollingFileAppender: preserve the file extension without log4net patch

M question is related to this one as I have the same problem. How can I make the RollingFileAppender of log4net preserve the file extension without having to actually "patch" (i.e. create an interim ...
0
votes
2answers
666 views

log4net fileappender not creating log-file.txt in Outlook ThisAddIn.cs

I can't see what is wrong here. I just want to get log4net writing to a log file with my Outlook AddIn. I have the following in my app.config file: <?xml version="1.0" encoding="utf-8" ?> ...
0
votes
3answers
376 views

Log4Net composite RollingFileAppender with static file extension

Does the current version of Log4net have a way to create a RollingFileAppender with composite rolling style where the rolled files always preserves the given extension (.log in my case)? Example of ...
0
votes
1answer
425 views

What happens if Log4Net doesn't have permission to access the file system

I'm implementing a logging solution with Log4Net for a Windows NT Service. I can flip a switch in a configuration file to start logging information to the file system. So far I've been able to ...
0
votes
4answers
234 views

Open rolling log file while being written to

Can anyone point me at an application to display/view a rolling log file as it is being written to? I know there are apps out there, but googling just gives me questions about writing to/creating the ...
0
votes
1answer
509 views

Issues in log4net with dynamic filenaming in RollingFileAppender

I have 3 appenders in my config file for creating 3 different types of logs. I am using dynamic naming of file in each of the 3 appenders by setting the global context properties. In some cases, i ...
0
votes
1answer
207 views

log4net not logging properly when rolling to a new date

Log4Net worked fine for a few months and then started giving problems when rolling out a new file for the next day. Problem: When ever i check in the daytime or until 23:59 everything is logged but ...
0
votes
3answers
1k views

log4net 1.2 RollingFileAppender not working

I'm using log4net v1.2 with a Windows Service App. My RollingFileAppender seems not to work. I'm pasting the logging sections of my service.exe.config below. Can anyone advise where m going wrong? ...
0
votes
3answers
495 views

Log4Net Rolling File Appender Rolling issue

Hi All I have the following log4net config <appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender"> <file type="log4net.Util.PatternString" ...
0
votes
2answers
8k 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, ...