vote up 0 vote down star
1

Hello,

All I want to do is append the current date and time to my log file, say:

"export_(Wed_Feb_21_2009_at_1_36_41PM)"

Here is my current config from my app.config

<appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender">
		<file value="c:\export.txt" />
		<appendToFile value="true" />
		<lockingModel type="log4net.Appender.FileAppender+MinimalLock" />
		<rollingStyle value="Size" />
		<maxSizeRollBackups value="10" />
		<layout type="log4net.Layout.PatternLayout">
			<conversionPattern value="%date [%thread] %-5level %logger [%property{NDC}] - %message %stackTrace%newline" />
		</layout>
</appender>

Is appending the date to my log file possible, or is it one of those things I need to do in Code and not Config?

flag

39% accept rate

3 Answers

vote up 1 vote down check

Add the following to your config file

<appender name="rollingFile" type="log4net.Appender.RollingFileAppender,log4net">
  <param name="File" value="c:\\ProjectX\\Log\\log.txt"/>
  <param name="AppendToFile" value="true"/>
  <lockingModel type="log4net.Appender.FileAppender+MinimalLock"/>
  <param name="RollingStyle" value="Date"/>
  <param name="DatePattern" value="yyyy.MM.dd"/>
  <param name="StaticLogFileName" value="true"/>
  <layout type="log4net.Layout.PatternLayout,log4net">
    <param name="ConversionPattern" value="%date [%thread] %-5level %logger - %message%newline"/>
  </layout>
</appender>
link|flag
Is there anything I need for the file param? The date still isn't being attached. Perhaps you could post the entire config? – Chris Feb 17 at 16:48
Sure, I have edited the answer above and added the whole appender section. – Nuno G Feb 18 at 9:16
Sorry... still no go. Are you using "log4net" or "Common.Logging"? I'm using Common.Logging. I still get a file named "log.txt" – Chris Feb 19 at 9:11
Just to be sure there is no misunderstanding here - the current file is always called "log.txt". Every day, upon logging for the 1st time, the former file gets renamed to log.txt<date>. – Nuno G Feb 19 at 14:36
OK, that makes sense. Also, you'd have to change "StaticLogFileName" to false, or the logger will not produce a second file, it will just append to the first. – Chris Feb 19 at 20:14
show 1 more comment
vote up 0 vote down

Use StaticLogFileName:

<param name="StaticLogFileName" value="true"/>
link|flag
Please provide more details – Chris Feb 10 at 19:48
With StaticLogFileName true, your rolling files will be date/time stamped instead of sequential (.1, .2, etc.). Now that I look at it, you have to set the rollingStyle to either "Date" or "Composite" for this to work. The RollingFileAppender doc. is pretty clear on these settings. – Bob Nadler Feb 10 at 20:38
vote up 1 vote down

For those who are interested, here is the solution:

	<appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender">
		<param name="File" value="C:\\Users\\chris\\Documents\\log_.txt"/>
		<param name="RollingStyle" value="Date"/>
		<param name="DatePattern" value="_(yyyy.MM.dd-hh_mm_ss)"/>
		<param name="StaticLogFileName" value="false"/>
  <maximumFileSize value="100KB" />
		<appendToFile value="true" />
		<lockingModel type="log4net.Appender.FileAppender+MinimalLock" />			
		<layout type="log4net.Layout.PatternLayout">
			<conversionPattern value="%date [%thread] %-5level %logger [%property{NDC}] - %message %stackTrace%newline" />
		</layout>
	</appender>

and the unit test which verifies this:

    [Test]
    public void TestLogger()
    {
        logger.Info("Start Log");

        for (int i = 0; i < 2500; i++)
        {
            logger.Info(i);
        }

        logger.Info("End Log Log");
    }

it produces the following output:

    log_.txt_(2009.02.19-01_16_34)

Not really what I wanted, but better than what I had before.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.