<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel">
    <title>gmane.comp.apache.logging.log4net.devel</title>
    <link>http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/432"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/431"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/430"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/429"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/428"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/427"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/426"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/425"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/424"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/423"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/422"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/421"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/420"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/419"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/418"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/417"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/416"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/415"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/414"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/413"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/432">
    <title>Udp Appender</title>
    <link>http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/432</link>
    <description>
Hi all!

I try to add me UdpAppender to log4net configuration. I've tried to test one
by one the following appenders:
































To check that my application really sends the Udp packages I used the
following C# code:

IPEndPoint remoteEndPoint = new IPEndPoint(IPAddress.Any, 0);
UdpClient udpClient;
byte[] buffer;
string loggingEvent;

try
{
udpClient = new UdpClient(portNumber);

while (true)
{
buffer = udpClient.Receive(ref remoteEndPoint);
loggingEvent = System.Text.Encoding.Unicode.GetString(buffer);
Console.WriteLine(loggingEvent);
}
}
catch (Exception e)
{
Console.WriteLine(e.ToString());
}

And I couldn't succeed.


Please help. How to configure log4net for using UdpAppender.

Thank you for your consideration.
</description>
    <dc:creator>Askold</dc:creator>
    <dc:date>2008-12-02T16:54:20</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/431">
    <title>Re: Create new log file each time application is started</title>
    <link>http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/431</link>
    <description>

Do you have any idea how I go about doing that? I can't find any
configuration options which let you pass in a parameter to the file name.

Rob


Ron Grabowski wrote:

</description>
    <dc:creator>Rob1234</dc:creator>
    <dc:date>2008-12-01T15:39:16</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/430">
    <title>[jira] Created: (LOG4NET-186) PatternLayout and globalRulesRegistry</title>
    <link>http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/430</link>
    <description>PatternLayout and globalRulesRegistry
-------------------------------------

                 Key: LOG4NET-186
                 URL: https://issues.apache.org/jira/browse/LOG4NET-186
             Project: Log4net
          Issue Type: Improvement
          Components: Core
    Affects Versions: 1.2.10
            Reporter: Sergey


Hi, i have suggestion. 

Make for private static field PatternLayout.s_globalRulesRegistry public static accessor. Because if i want append custom PatternLayoutConverter, i need add him to each PatternLayout for each Appender. 

I am using AdoNetAppender, which creates PatternLayout for each parameter. And i must append my PatternLayoutConverter to each param. I think, if i have static property or method for adding PatternLayoutConvertor - its will be more simple for use.

</description>
    <dc:creator>Sergey (JIRA</dc:creator>
    <dc:date>2008-11-30T15:29:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/429">
    <title>Re: Create new log file each time application is started</title>
    <link>http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/429</link>
    <description>You'd have to do something like include the process id (or other unique identifier) in the file name for each instance.



----- Original Message ----
From: Rob1234 &lt;robert.sammons&lt; at &gt;lloydstsb.co.uk&gt;
To: log4net-dev&lt; at &gt;logging.apache.org
Sent: Friday, November 28, 2008 8:54:40 AM
Subject: Create new log file each time application is started


Hi

I have a problem with log4net. I have an application which uses a
RollingFileAppender. The applcation can be started multiple times from the
same location. I want there to be a seperate log file each time the
application is started. e.g. 5 apps running = 5 log files. Is there any way
to do this in log4net?

</description>
    <dc:creator>Ron Grabowski</dc:creator>
    <dc:date>2008-11-28T17:29:56</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/428">
    <title>Create new log file each time application is started</title>
    <link>http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/428</link>
    <description>
Hi

I have a problem with log4net. I have an application which uses a
RollingFileAppender. The applcation can be started multiple times from the
same location. I want there to be a seperate log file each time the
application is started. e.g. 5 apps running = 5 log files. Is there any way
to do this in log4net?

</description>
    <dc:creator>Rob1234</dc:creator>
    <dc:date>2008-11-28T13:54:40</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/427">
    <title>Re: cant get log4net to log</title>
    <link>http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/427</link>
    <description>Do you have a log4net config handler defined in web.config so .NET knows how to handle the &lt;log4net&gt; node:

 &lt;configSections&gt;
  &lt;section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" /&gt;
 &lt;/configSections&gt;

Your AdoNetAppender is set to buffer 100 log messages before inserting them into the database. Try setting that value to 1 for the time being.




________________________________
From: Wade DeWerff &lt;dewerffw&lt; at &gt;medjames.com&gt;
To: log4net-dev&lt; at &gt;logging.apache.org
Sent: Wednesday, November 26, 2008 10:03:33 AM
Subject: cant get log4net to log


What's missing here? Using profiler, the database never 
receives the call. I tried adding a File appender and that didn't work either. 

web.config: 
    &lt;log4net&gt; 
        &lt;appender 
name="ADONetAppender" type="log4net.Appender.ADONetAppender"&gt; 
  
          &lt;bufferSize value="100" /&gt; 
  
          &lt;connectionType 
value="System.Data.SqlClient.SqlConnection, System.Data, Version=2.0.0.0, 
Culture=neutral, PublicKeyToken=b77a5c561934e089</description>
    <dc:creator>Ron Grabowski</dc:creator>
    <dc:date>2008-11-27T21:21:04</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/426">
    <title>Martin Hutter/Switzerland/PAGO ist außer Haus.</title>
    <link>http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/426</link>
    <description>Ich werde ab  24.11.2008 nicht im Büro sein. Ich kehre zurück am
29.11.2008.

I am currently not in the office, but I will be back on 1.12.2008.

Wichtige Meldungen bitte an:
Important Mails to:
urs.kuehnis&lt; at &gt;pago.ch


</description>
    <dc:creator>martin.hutter&lt; at &gt;pago.ch</dc:creator>
    <dc:date>2008-11-26T15:08:46</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/425">
    <title>cant get log4net to log</title>
    <link>http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/425</link>
    <description>What's missing here? Using profiler, the database never receives the
call. I tried adding a File appender and that didn't work either. 

web.config: 
    &lt;log4net&gt; 
        &lt;appender name="ADONetAppender"
type="log4net.Appender.ADONetAppender"&gt; 
            &lt;bufferSize value="100" /&gt; 
            &lt;connectionType value="System.Data.SqlClient.SqlConnection,
System.Data, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=b77a5c561934e089" /&gt; 
            &lt;connectionString value="data
source=(local)\SQLEXPRESS;initial catalog=MyTestDB;integrated
security=false;persist security info=True;User ID=user;Password=pass" /&gt;

            &lt;commandText value="INSERT INTO Log
([Date],[Thread],[Level],[Logger],[Message],[Exception]) VALUES
(&lt; at &gt;log_date, &lt; at &gt;thread, &lt; at &gt;log_level, &lt; at &gt;logger, &lt; at &gt;message, &lt; at &gt;exception)" /&gt; 
........ etc 
        &lt;root&gt; 
            &lt;level value="ERROR" /&gt; 
            &lt;appender-ref ref="ADONetAppender" /&gt; 
        &lt;/root&gt; 
        &lt;logger name="LogUtility"&gt; 
            &lt;level value="ALL" /&gt; 
        &lt;/logger</description>
    <dc:creator>Wade DeWerff</dc:creator>
    <dc:date>2008-11-26T15:03:33</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/424">
    <title>[jira] Commented: (LOG4NET-178) Log4Net stops logging after appdomain recycle of aps.net2.0 application</title>
    <link>http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/424</link>
    <description>
    [ https://issues.apache.org/jira/browse/LOG4NET-178?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12648323#action_12648323 ] 

Ilpo Juvander commented on LOG4NET-178:
---------------------------------------

We have also similar situation. We're using rollingfileappender.

What has helped on some cases is to call on global.asax Xmlconfigurator.ConfigureAndWatch -method on Init(), but this trick does not work 100% of the time. It just stops logging.

Even restarting IIS does not help. Sometimes logging resumes after renaming the logfile, sometimes not. Same thing happens when adding the processid into it.

Appender in setup like this:

    &lt;appender name="RollingLogFileAppender" type="log4net.Appender.RollingFileAppender"&gt;
      &lt;file value="Webservice.service.txt" /&gt;
      &lt;lockingModel type="log4net.Appender.FileAppender+MinimalLock" /&gt;
      &lt;appendToFile value="true" /&gt;
      &lt;rollingStyle value="Size" /&gt;
      &lt;maxSizeRollBackups value="10" /&gt;
      &lt;maximumF</description>
    <dc:creator>Ilpo Juvander (JIRA</dc:creator>
    <dc:date>2008-11-17T20:48:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/423">
    <title>RE: configSections getting compiler message.</title>
    <link>http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/423</link>
    <description>
I tried that and I still get the schema messages.

Everything works, I just get ~25 messages saying "Could not find schema for..."

Tom P.


Date: Sun, 16 Nov 2008 07:59:03 -0800
From: rongrabowski&lt; at &gt;yahoo.com
Subject: Re: configSections getting compiler message.
To: log4net-dev&lt; at &gt;logging.apache.org



You're using a RollingFileAppender but you're telling the root logger to use a ConsoleAppender. Change the code to this:

&lt;appender-ref ref="RollingFileAppender" /&gt;

From: Henry Padilla &lt;padillah&lt; at &gt;hotmail.com&gt;
To: log4net-dev&lt; at &gt;logging.apache.org
Sent: Friday, November 14, 2008 1:04:03 PM
Subject: configSections getting compiler message.





I'm trying to use this in VS2005 .NET v2.0. I need to set the config up in the App.config but I'm getting messages:

"Could not find schema information for the element 'log4net'."
"Could not find schema information for the element 'appender'."

...and so forth. I'm using the configSections example from the site and I can't find anything wrong:

    &lt;configSections&gt;
        &lt;sec</description>
    <dc:creator>Henry Padilla</dc:creator>
    <dc:date>2008-11-17T12:55:43</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/422">
    <title>Re: conversionPattern parameters</title>
    <link>http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/422</link>
    <description>http://logging.apache.org/log4net/release/sdk/log4net.Layout.PatternLayout.html




________________________________
From: Henry Padilla &lt;padillah&lt; at &gt;hotmail.com&gt;
To: log4net-dev&lt; at &gt;logging.apache.org
Sent: Friday, November 14, 2008 1:07:20 PM
Subject: conversionPattern parameters

 Where can I find a list of conversionPattern parameters? I remember there being a parameter that would display the method you were in but I can't find it anywhere.

Tom P.


________________________________
Get 5 GB of storage with Windows Live Hotmail. Sign up today.</description>
    <dc:creator>Ron Grabowski</dc:creator>
    <dc:date>2008-11-16T16:00:12</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/421">
    <title>Re: configSections getting compiler message.</title>
    <link>http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/421</link>
    <description>You're using a RollingFileAppender but you're telling the root logger to use a ConsoleAppender. Change the code to this:

&lt;appender-ref ref="RollingFileAppender" /&gt;




________________________________
From: Henry Padilla &lt;padillah&lt; at &gt;hotmail.com&gt;
To: log4net-dev&lt; at &gt;logging.apache.org
Sent: Friday, November 14, 2008 1:04:03 PM
Subject: configSections getting compiler message.

 I'm trying to use this in VS2005 .NET v2.0. I need to set the config up in the App.config but I'm getting messages:

"Could not find schema information for the element 'log4net'."
"Could not find schema information for the element 'appender'."

...and so forth. I'm using the configSections example from the site and I can't find anything wrong:

    &lt;configSections&gt;
        &lt;section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" /&gt;
    &lt;/configSections&gt;
    &lt;log4net&gt;
        &lt;appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender"&gt;
            &lt;file value="log.txt" /&gt;
            &lt;app</description>
    <dc:creator>Ron Grabowski</dc:creator>
    <dc:date>2008-11-16T15:59:03</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/420">
    <title>conversionPattern parameters</title>
    <link>http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/420</link>
    <description>
Where can I find a list of conversionPattern parameters? I remember there being a parameter that would display the method you were in but I can't find it anywhere.

Tom P.


_________________________________________________________________
Get 5 GB of storage with Windows Live Hotmail.
http://windowslive.com/Explore/Hotmail?ocid=TXT_TAGLM_WL_hotmail_acq_5gb_112008</description>
    <dc:creator>Henry Padilla</dc:creator>
    <dc:date>2008-11-14T18:07:20</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/419">
    <title>configSections getting compiler message.</title>
    <link>http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/419</link>
    <description>
I'm trying to use this in VS2005 .NET v2.0. I need to set the config up in the App.config but I'm getting messages:

"Could not find schema information for the element 'log4net'."
"Could not find schema information for the element 'appender'."

...and so forth. I'm using the configSections example from the site and I can't find anything wrong:

    &lt;configSections&gt;
        &lt;section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" /&gt;
    &lt;/configSections&gt;
    &lt;log4net&gt;
        &lt;appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender"&gt;
            &lt;file value="log.txt" /&gt;
            &lt;appendToFile value="true" /&gt;
            &lt;rollingStyle value="Size" /&gt;
            &lt;maxSizeRollBackups value="10" /&gt;
            &lt;maximumFileSize value="100KB" /&gt;
            &lt;staticLogFileName value="true" /&gt;
            &lt;layout type="log4net.Layout.PatternLayout"&gt;
                &lt;conversionPattern value="%date [%thread] %-5level %logger [%property{NDC}] - %message%newline</description>
    <dc:creator>Henry Padilla</dc:creator>
    <dc:date>2008-11-14T18:04:03</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/418">
    <title>Re: log4net support for .NET framework 3.5</title>
    <link>http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/418</link>
    <description>
current version does seem to work with Microsoft .NET 3.5, this (
http://www.dottostring.com/2008/11/5-how-to-use-log4net-logging-aspnet-application/
http://www.dottostring.com/2008/11/5-how-to-use-log4net-logging-aspnet-application/
) really helped me to get going quickly without wasting any time. hope it
helps you :)

dipankaronline wrote:

</description>
    <dc:creator>chandler1234</dc:creator>
    <dc:date>2008-11-13T21:27:28</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/417">
    <title>[jira] Commented: (LOG4NET-178) Log4Net stops logging after appdomain recycle of aps.net2.0 application</title>
    <link>http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/417</link>
    <description>
    [ https://issues.apache.org/jira/browse/LOG4NET-178?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12646749#action_12646749 ] 

Ron Grabowski commented on LOG4NET-178:
---------------------------------------

What appenders are you using? Maybe you have an exclusive lock on something that is still being kept after the restart. Have you tried using the AdoNetAppender and/or appending the processid to your filename so every restart gets its own file?


</description>
    <dc:creator>Ron Grabowski (JIRA</dc:creator>
    <dc:date>2008-11-12T00:27:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/416">
    <title>[jira] Assigned: (LOG4NET-181) Have PatternString recognize %n just as PatternLayout recognizes it</title>
    <link>http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/416</link>
    <description>
     [ https://issues.apache.org/jira/browse/LOG4NET-181?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ron Grabowski reassigned LOG4NET-181:
-------------------------------------

    Assignee: Ron Grabowski


</description>
    <dc:creator>Ron Grabowski (JIRA</dc:creator>
    <dc:date>2008-11-12T00:27:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/415">
    <title>[jira] Commented: (LOG4NET-179) Log file does not get created by release version of App.exe</title>
    <link>http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/415</link>
    <description>
    [ https://issues.apache.org/jira/browse/LOG4NET-179?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12646748#action_12646748 ] 

Ron Grabowski commented on LOG4NET-179:
---------------------------------------

The code works the same in both Debug and Release modes when I changed the file name to something more meaningful. You can't lock nul:

 log4net:ERROR [RollingFileAppender] OpenFile(\\.\nul,False) call failed.
 log4net.Appender.FileAppender+LockingStream+LockStateException: The file is not currently locked


</description>
    <dc:creator>Ron Grabowski (JIRA</dc:creator>
    <dc:date>2008-11-12T00:25:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/414">
    <title>[jira] Commented: (LOG4NET-180) SMTPAppender not sending all emails</title>
    <link>http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/414</link>
    <description>
    [ https://issues.apache.org/jira/browse/LOG4NET-180?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12646740#action_12646740 ] 

Ron Grabowski commented on LOG4NET-180:
---------------------------------------

What happens when you add this to the appender:

 &lt;bufferSize value="1" /&gt;


</description>
    <dc:creator>Ron Grabowski (JIRA</dc:creator>
    <dc:date>2008-11-12T00:15:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/413">
    <title>[jira] Created: (LOG4NET-185) Rolling files backups is not decreasing when updating MaxSizeRollBackups</title>
    <link>http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/413</link>
    <description>Rolling files backups is not decreasing when updating MaxSizeRollBackups
------------------------------------------------------------------------

                 Key: LOG4NET-185
                 URL: https://issues.apache.org/jira/browse/LOG4NET-185
             Project: Log4net
          Issue Type: Bug
    Affects Versions: 1.2.10
         Environment: windows, all 
            Reporter: nir bon


When decreasing the MaxSizeRollBackups parameter at runtime.
the log4net is not deleting older files that has already written.

This means that if i change the MaxSizeRollBackups parameter repeadetly, i can reach to very large number of old log files.

reconstruct scenario
^^^^^^^^^^^^^^^^^^^^^^
set number of backups to 10 files. wait till you have 10 files.
decrease number of backups to 2. 

result- 10 files will remain at disk. 8 files will never be deleted, 2 files will stay as retention.
expected - only 2 files will remain in disk.



</description>
    <dc:creator>nir bon (JIRA</dc:creator>
    <dc:date>2008-11-09T09:50:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/412">
    <title>[jira] Created: (LOG4NET-184) Configuration Changes + XSD</title>
    <link>http://permalink.gmane.org/gmane.comp.apache.logging.log4net.devel/412</link>
    <description>Configuration Changes + XSD
---------------------------

                 Key: LOG4NET-184
                 URL: https://issues.apache.org/jira/browse/LOG4NET-184
             Project: Log4net
          Issue Type: Wish
          Components: Core, Documentation
    Affects Versions: 1.2.10
         Environment: n/a
            Reporter: Roger Knapp
            Priority: Minor


I'm a first-time user of log4net.  At first impression the configuration is very overwhelming.  Though I recognize the strength by it's flexibility, I think it's one of the weakest points of log4net.  Some simple changes could allow a real XSD to be created and thus to verify configuration and provide helpful context help when tring to create them.  I've worked to understand the current configuration and after reading the documentation and reverse engineering the code, I finally have an understanding what to do.  It was a long and painful process and I wanted to share that experience with you only so that you could improve the experie</description>
    <dc:creator>Roger Knapp (JIRA</dc:creator>
    <dc:date>2008-11-08T21:34:44</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.apache.logging.log4net.devel">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.apache.logging.log4net.devel</link>
  </textinput>
</rdf:RDF>
