<?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://blog.gmane.org/gmane.comp.apache.logging.log4net.devel">
    <title>gmane.comp.apache.logging.log4net.devel</title>
    <link>http://blog.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://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/811"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/810"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/807"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/806"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/801"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/795"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/790"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/788"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/787"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/786"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/784"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/782"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/781"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/779"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/778"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/777"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/776"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/775"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/774"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/773"/>
      </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://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/811">
    <title>[jira] Created: (LOG4NET-250) Drastically decrease amount of time needed for LoggingEvent.UserName</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/811</link>
    <description>&lt;pre&gt;Drastically decrease amount of time needed for LoggingEvent.UserName
--------------------------------------------------------------------

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


Currently, each LoggingEvent retrieves the logged on user using 
WindowsIdentity.GetCurrent() which takes a long time

One can obtain drastic improvements by switching to Environment.UserDomain and Environment.UserName

Here are some numbers on my box running Windows XP SP3, .NET 2.0, debug mode.
Using Environment:


            for (int i = 0; i &amp;lt; 50000; i++)
            {
               var x = (Environment.UserDomainName);
            }

takes 4294 milliseconds to run (4.294) using Stopwatch

Using WindowsIdentity:
            for (int i = 0; i &amp;lt; 50000; i++)
            {
                var x = (WindowsIdentity.GetCurrent().Name);
            }
            start.Stop();

takes 20191 (20 seconds) milliseconds to run,

Thus, it takes almost 5x longer to use WindowsIdentity.

This isn't much of an issue if you're not logging extremely high quantities or do not log the user name.
However, I'm currently using XmlLayoutSchemaLog4j which forces the retrieval of said information for the log4net:UserName property.


&lt;/pre&gt;</description>
    <dc:creator>Hao Zhang (JIRA</dc:creator>
    <dc:date>2010-03-08T17:55:29</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/810">
    <title>[jira] Created: (LOG4NET-249) Please make "RollFile" virtual so that we can enhance rolling strategies</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/810</link>
    <description>&lt;pre&gt;Please make "RollFile" virtual so that we can enhance rolling strategies
------------------------------------------------------------------------

                 Key: LOG4NET-249
                 URL: https://issues.apache.org/jira/browse/LOG4NET-249
             Project: Log4net
          Issue Type: New Feature
          Components: Appenders
    Affects Versions: 1.2.10
         Environment: All
            Reporter: Scott Mitchell


I enhanced the RollingFileAppender so that you can roll to S3 (I call it RollingS3FileAppender). Right now, I have to duplicate all of the RollingFileAppender code because the RollFile method is not virtual.

Can this be worked into the next build?

&lt;/pre&gt;</description>
    <dc:creator>Scott Mitchell (JIRA</dc:creator>
    <dc:date>2010-03-06T00:25:27</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/807">
    <title>[jira] Created: (LOG4NET-248) Log4Net won't log in production environment while it works in development environment</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/807</link>
    <description>&lt;pre&gt;Log4Net won't log in production environment while it works in development environment
-------------------------------------------------------------------------------------

                 Key: LOG4NET-248
                 URL: https://issues.apache.org/jira/browse/LOG4NET-248
             Project: Log4net
          Issue Type: Bug
    Affects Versions: 1.2.10
         Environment: Windows Server 2003 R2, SharePoint, MOSS 2007, Web farm environment.
            Reporter: Amit Gupta
            Priority: Critical
             Fix For: 1.2.10


We have several SharePoint web apps on the production server with similar setup on test, int and dev environments. But the issue is that log4net logs in all environments for all SharePoint web apps EXCEPT ONE web app. Couldn't figure out what could be the possible reason.

&lt;/pre&gt;</description>
    <dc:creator>Amit Gupta (JIRA</dc:creator>
    <dc:date>2010-02-23T20:23:28</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/806">
    <title>Want to dynamically set To address in SmtpAppender</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/806</link>
    <description>&lt;pre&gt;
I have a SmtpAppender and I want to control the To address from the C#
program. I believe there is a way to get the SmtpAppender appender instance
at run time and set the To address. Anyone know the syntax needed? This
would trick would work for all appenders and parameters I believe.
&lt;/pre&gt;</description>
    <dc:creator>jfputnam</dc:creator>
    <dc:date>2010-02-19T15:34:24</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/801">
    <title>[jira] Created: (LOG4NET-247) Addint to log4net.GlobalContext.Properties causes UnhandleException filter to fail.</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/801</link>
    <description>&lt;pre&gt;Addint to log4net.GlobalContext.Properties causes UnhandleException filter to fail.
-----------------------------------------------------------------------------------

                 Key: LOG4NET-247
                 URL: https://issues.apache.org/jira/browse/LOG4NET-247
             Project: Log4net
          Issue Type: Bug
    Affects Versions: 1.2.10
         Environment: Windows XP, SP2.
            Reporter: Rob Woerner
            Priority: Blocker
             Fix For: v.Next


I have an application that registers for AppDomain.CurrentDomain.UnhandledException and Application.ThreadException.  The handlers weren't getting triggered when exceptions occurred.  I have narrowed it down to this statement:

log4net.GlobalContext.Properties["RFN"] = "myfile.log";

If I take this statement out, exceptions trigger the global exception handler(s) as expected.  After debugging through the code, I see absolutely nothing that might cause this problem.  The Properties property is never even looked at again.  This behavior is bizarre and really interferes with debugging.  It doesn't seem to occur on all systems.

I have created a default WinForms app that does not except call the statement above and generate an exception.  If anyone has any idea what might cause this, I'd love to here it.  Sample code below. All files not given here are the default files generated by the compiler.

----------- CrashTest.csproj ----------------------
&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;
&amp;lt;Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"&amp;gt;
  &amp;lt;PropertyGroup&amp;gt;
    &amp;lt;Configuration Condition=" '$(Configuration)' == '' "&amp;gt;Debug&amp;lt;/Configuration&amp;gt;
    &amp;lt;Platform Condition=" '$(Platform)' == '' "&amp;gt;AnyCPU&amp;lt;/Platform&amp;gt;
    &amp;lt;ProductVersion&amp;gt;9.0.30729&amp;lt;/ProductVersion&amp;gt;
    &amp;lt;SchemaVersion&amp;gt;2.0&amp;lt;/SchemaVersion&amp;gt;
    &amp;lt;ProjectGuid&amp;gt;{0F520198-7D51-400A-A373-821F35462CC4}&amp;lt;/ProjectGuid&amp;gt;
    &amp;lt;OutputType&amp;gt;WinExe&amp;lt;/OutputType&amp;gt;
    &amp;lt;AppDesignerFolder&amp;gt;Properties&amp;lt;/AppDesignerFolder&amp;gt;
    &amp;lt;RootNamespace&amp;gt;CrashTest&amp;lt;/RootNamespace&amp;gt;
    &amp;lt;AssemblyName&amp;gt;CrashTest&amp;lt;/AssemblyName&amp;gt;
    &amp;lt;TargetFrameworkVersion&amp;gt;v3.5&amp;lt;/TargetFrameworkVersion&amp;gt;
    &amp;lt;FileAlignment&amp;gt;512&amp;lt;/FileAlignment&amp;gt;
  &amp;lt;/PropertyGroup&amp;gt;
  &amp;lt;PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "&amp;gt;
    &amp;lt;DebugSymbols&amp;gt;true&amp;lt;/DebugSymbols&amp;gt;
    &amp;lt;DebugType&amp;gt;full&amp;lt;/DebugType&amp;gt;
    &amp;lt;Optimize&amp;gt;false&amp;lt;/Optimize&amp;gt;
    &amp;lt;OutputPath&amp;gt;bin\Debug\&amp;lt;/OutputPath&amp;gt;
    &amp;lt;DefineConstants&amp;gt;DEBUG;TRACE&amp;lt;/DefineConstants&amp;gt;
    &amp;lt;ErrorReport&amp;gt;prompt&amp;lt;/ErrorReport&amp;gt;
    &amp;lt;WarningLevel&amp;gt;4&amp;lt;/WarningLevel&amp;gt;
  &amp;lt;/PropertyGroup&amp;gt;
  &amp;lt;PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "&amp;gt;
    &amp;lt;DebugType&amp;gt;pdbonly&amp;lt;/DebugType&amp;gt;
    &amp;lt;Optimize&amp;gt;true&amp;lt;/Optimize&amp;gt;
    &amp;lt;OutputPath&amp;gt;bin\Release\&amp;lt;/OutputPath&amp;gt;
    &amp;lt;DefineConstants&amp;gt;TRACE&amp;lt;/DefineConstants&amp;gt;
    &amp;lt;ErrorReport&amp;gt;prompt&amp;lt;/ErrorReport&amp;gt;
    &amp;lt;WarningLevel&amp;gt;4&amp;lt;/WarningLevel&amp;gt;
  &amp;lt;/PropertyGroup&amp;gt;
  &amp;lt;ItemGroup&amp;gt;
    &amp;lt;Reference Include="log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=1b44e1d426115821, processorArchitecture=MSIL"&amp;gt;
      &amp;lt;SpecificVersion&amp;gt;False&amp;lt;/SpecificVersion&amp;gt;
      &amp;lt;HintPath&amp;gt;.\log4net.dll&amp;lt;/HintPath&amp;gt;
    &amp;lt;/Reference&amp;gt;
    &amp;lt;Reference Include="System" /&amp;gt;
    &amp;lt;Reference Include="System.Core"&amp;gt;
      &amp;lt;RequiredTargetFramework&amp;gt;3.5&amp;lt;/RequiredTargetFramework&amp;gt;
    &amp;lt;/Reference&amp;gt;
    &amp;lt;Reference Include="System.Xml.Linq"&amp;gt;
      &amp;lt;RequiredTargetFramework&amp;gt;3.5&amp;lt;/RequiredTargetFramework&amp;gt;
    &amp;lt;/Reference&amp;gt;
    &amp;lt;Reference Include="System.Data.DataSetExtensions"&amp;gt;
      &amp;lt;RequiredTargetFramework&amp;gt;3.5&amp;lt;/RequiredTargetFramework&amp;gt;
    &amp;lt;/Reference&amp;gt;
    &amp;lt;Reference Include="System.Data" /&amp;gt;
    &amp;lt;Reference Include="System.Deployment" /&amp;gt;
    &amp;lt;Reference Include="System.Drawing" /&amp;gt;
    &amp;lt;Reference Include="System.Windows.Forms" /&amp;gt;
    &amp;lt;Reference Include="System.Xml" /&amp;gt;
  &amp;lt;/ItemGroup&amp;gt;
  &amp;lt;ItemGroup&amp;gt;
    &amp;lt;Compile Include="Form1.cs"&amp;gt;
      &amp;lt;SubType&amp;gt;Form&amp;lt;/SubType&amp;gt;
    &amp;lt;/Compile&amp;gt;
    &amp;lt;Compile Include="Form1.Designer.cs"&amp;gt;
      &amp;lt;DependentUpon&amp;gt;Form1.cs&amp;lt;/DependentUpon&amp;gt;
    &amp;lt;/Compile&amp;gt;
    &amp;lt;Compile Include="Program.cs" /&amp;gt;
    &amp;lt;Compile Include="Properties\AssemblyInfo.cs" /&amp;gt;
    &amp;lt;EmbeddedResource Include="Form1.resx"&amp;gt;
      &amp;lt;DependentUpon&amp;gt;Form1.cs&amp;lt;/DependentUpon&amp;gt;
    &amp;lt;/EmbeddedResource&amp;gt;
    &amp;lt;EmbeddedResource Include="Properties\Resources.resx"&amp;gt;
      &amp;lt;Generator&amp;gt;ResXFileCodeGenerator&amp;lt;/Generator&amp;gt;
      &amp;lt;LastGenOutput&amp;gt;Resources.Designer.cs&amp;lt;/LastGenOutput&amp;gt;
      &amp;lt;SubType&amp;gt;Designer&amp;lt;/SubType&amp;gt;
    &amp;lt;/EmbeddedResource&amp;gt;
    &amp;lt;Compile Include="Properties\Resources.Designer.cs"&amp;gt;
      &amp;lt;AutoGen&amp;gt;True&amp;lt;/AutoGen&amp;gt;
      &amp;lt;DependentUpon&amp;gt;Resources.resx&amp;lt;/DependentUpon&amp;gt;
    &amp;lt;/Compile&amp;gt;
    &amp;lt;None Include="Properties\Settings.settings"&amp;gt;
      &amp;lt;Generator&amp;gt;SettingsSingleFileGenerator&amp;lt;/Generator&amp;gt;
      &amp;lt;LastGenOutput&amp;gt;Settings.Designer.cs&amp;lt;/LastGenOutput&amp;gt;
    &amp;lt;/None&amp;gt;
    &amp;lt;Compile Include="Properties\Settings.Designer.cs"&amp;gt;
      &amp;lt;AutoGen&amp;gt;True&amp;lt;/AutoGen&amp;gt;
      &amp;lt;DependentUpon&amp;gt;Settings.settings&amp;lt;/DependentUpon&amp;gt;
      &amp;lt;DesignTimeSharedInput&amp;gt;True&amp;lt;/DesignTimeSharedInput&amp;gt;
    &amp;lt;/Compile&amp;gt;
  &amp;lt;/ItemGroup&amp;gt;
  &amp;lt;Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /&amp;gt;
  &amp;lt;!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
       Other similar extension points exist, see Microsoft.Common.targets.
  &amp;lt;Target Name="BeforeBuild"&amp;gt;
  &amp;lt;/Target&amp;gt;
  &amp;lt;Target Name="AfterBuild"&amp;gt;
  &amp;lt;/Target&amp;gt;
  --&amp;gt;
&amp;lt;/Project&amp;gt;
--------------- Program.cs ---------------------------
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;

namespace CrashTest
{
static class Program
{
/// &amp;lt;summary&amp;gt;
/// The main entry point for the application.
/// &amp;lt;/summary&amp;gt;
[STAThread]
static void Main()
{
Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException);
AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
Application.ThreadException += new System.Threading.ThreadExceptionEventHandler(Application_ThreadException);
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
{
MessageBox.Show("Crash One!");
}

static void Application_ThreadException(object sender, System.Threading.ThreadExceptionEventArgs e)
{
MessageBox.Show("Crash Two!");
}
}
}
----------------- Form1.cs --------------------
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace CrashTest
{
public partial class Form1 : Form
{
public Form1()
{
log4net.GlobalContext.Properties["RFN"] = "foo";

InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
StartCrash();
}
void StartCrash()
{
System.Threading.Thread t = new System.Threading.Thread(EndCrash);
t.IsBackground = true;
t.Start();
}
void EndCrash()
{
string s = null;
s.Clone();
}
}
}
-------------- Form1.Designer.cs -------------------------------
namespace CrashTest
{
partial class Form1
{
/// &amp;lt;summary&amp;gt;
/// Required designer variable.
/// &amp;lt;/summary&amp;gt;
private System.ComponentModel.IContainer components = null;

/// &amp;lt;summary&amp;gt;
/// Clean up any resources being used.
/// &amp;lt;/summary&amp;gt;
/// &amp;lt;param name="disposing"&amp;gt;true if managed resources should be disposed; otherwise, false.&amp;lt;/param&amp;gt;
protected override void Dispose(bool disposing)
{
if (disposing &amp;amp;&amp;amp; (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}

#region Windows Form Designer generated code

/// &amp;lt;summary&amp;gt;
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// &amp;lt;/summary&amp;gt;
private void InitializeComponent()
{
this.button1 = new System.Windows.Forms.Button();
this.SuspendLayout();
// 
// button1
// 
this.button1.Location = new System.Drawing.Point(105, 99);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 35);
this.button1.TabIndex = 0;
this.button1.Text = "Crash!";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
// 
// Form1
// 
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 260);
this.Controls.Add(this.button1);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);

}

#endregion

private System.Windows.Forms.Button button1;
}
}





&lt;/pre&gt;</description>
    <dc:creator>Rob Woerner (JIRA</dc:creator>
    <dc:date>2010-02-12T02:51:32</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/795">
    <title>.NET 4.0 support</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/795</link>
    <description>&lt;pre&gt;Greetings,

first of all I would like to present myself as a new member of the
log4net-devel mailing list. :-) And right away I start with my question.

I issued the problem that log4net is not compatible with .NET 4.0 and as
such I ask if this is going to change?

So basically this mail should lead to a small discussion if it would meet
the project roadmap and if it should be targeted in a future release.

Greetings,
D.


&lt;/pre&gt;</description>
    <dc:creator>Dominik Psenner</dc:creator>
    <dc:date>2010-02-05T15:34:03</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/790">
    <title>[jira] Created: (LOG4NET-246) Make it possible to choose whether or not to watch configuration files specified using the "log4net.Config" appsetting key</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/790</link>
    <description>&lt;pre&gt;Make it possible to choose whether or not to watch configuration files specified using the "log4net.Config" appsetting key 
---------------------------------------------------------------------------------------------------------------------------

                 Key: LOG4NET-246
                 URL: https://issues.apache.org/jira/browse/LOG4NET-246
             Project: Log4net
          Issue Type: Improvement
          Components: Core
    Affects Versions: 1.2.10
            Reporter: Uri Goldstein
            Priority: Minor


Currently (v1.2.10) it is possible to specify a configuration file for log4net by adding a key like this in the host application's configuration &amp;lt;appSettings&amp;gt; section:
&amp;lt;add key="log4net.Config" value="Log.config" /&amp;gt;

This defaults to invoking XmlConfigurator.Configure() on the file specified (log4net/Core/DefaultRepositorySelector.cs,  line 725). This means the file is not watched for changes during program run time.

It would be nice if there was some way similar to the above &amp;lt;appSettings&amp;gt; key to specify whether log4net should watch the file or not.

I might propose that a new key is introduced in this fashion:
&amp;lt;add key="log4net.Config.Watch" value="true" /&amp;gt;

This key would denote a bool value defaulting to false. The value would only be taken into consideration if the "log4net.Config" key is specified.

&lt;/pre&gt;</description>
    <dc:creator>Uri Goldstein (JIRA</dc:creator>
    <dc:date>2010-02-03T21:55:27</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/788">
    <title>Log4net UDP Appender and Chainsaw on Windows 7</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/788</link>
    <description>&lt;pre&gt;Dear Sirs.

We were using the log4net with chainsaw (over UDP) on the  WinXP for a few years with absolutely no complications. However, once we upgraded to Windows 7, messages sent over UDP did not reach the chainsaw. We tried almost everything. Is this a known issue or do you have any clue for us. 

Thank you for any advice.

Regards,

Josef Stromsky

&lt;/pre&gt;</description>
    <dc:creator>Stromský Josef</dc:creator>
    <dc:date>2010-02-03T16:57:30</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/787">
    <title>[jira] Created: (LOG4NET-245) Need information on Exception  Handling mechanism used in Log4Net project</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/787</link>
    <description>&lt;pre&gt;Need information on Exception  Handling mechanism used in Log4Net project
-------------------------------------------------------------------------

                 Key: LOG4NET-245
                 URL: https://issues.apache.org/jira/browse/LOG4NET-245
             Project: Log4net
          Issue Type: Task
    Affects Versions: 1.2.10
         Environment: XP
            Reporter: Rajat Raina


I need some information as we are working on a common Exception handling framework for all our code.

Can you please let me know if Log4Net dll defines any Exception filters through the usage of Microsoft's SetUnhandledExceptionFilter?

I need this information for my common exception handling framework designing.

Please let me know!

Thanks!

&lt;/pre&gt;</description>
    <dc:creator>Rajat Raina (JIRA</dc:creator>
    <dc:date>2010-02-02T12:08:19</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/786">
    <title>[jira] Created: (LOG4NET-244) SmtpAppender.To Property has incorrect delimiter</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/786</link>
    <description>&lt;pre&gt;SmtpAppender.To Property has incorrect delimiter
------------------------------------------------

                 Key: LOG4NET-244
                 URL: https://issues.apache.org/jira/browse/LOG4NET-244
             Project: Log4net
          Issue Type: Bug
          Components: Appenders
    Affects Versions: 1.2.10
         Environment: Win 2003 Server Running ASP.net application on framework 2.0
            Reporter: Charles Chatt


SmtpAppender.To Property has an incorrect delimiter listed in the documentation.  When the semicolon delimiter is used (per spec) the application will not send emails to the list.  Yet, if the delimiter is changed to a comma, everything works fine.

Here is the link to the documentation which specifies the semicolon delimiter.  

http://logging.apache.org/log4net/release/sdk/log4net.Appender.SmtpAppender.To.html




&lt;/pre&gt;</description>
    <dc:creator>Charles Chatt (JIRA</dc:creator>
    <dc:date>2010-01-25T17:16:34</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/784">
    <title>Log file with username!!!</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/784</link>
    <description>&lt;pre&gt;
Hi, i'm trying to create a log file with tihs name:   user_name_ddmmyy
The problem is that i dont know how to append the username to the fielname.

first, i get the user name :

 log4net.ThreadContext.Properties["Log_User"] = UserName;

Then in the webconfig I have:


appender name="FileAppender" type="log4net.Appender.RollingFileAppender"&amp;gt;
    
      
    
      
      
      
  
    &amp;lt;!--   --&amp;gt;
      
      
      &amp;lt;layout type="log4net.Layout.PatternLayout"&amp;gt;
        
      &amp;lt;/layout&amp;gt;
    &amp;lt;/appender&amp;gt;

But  the DatePattern  appends a "LoA.D._U58er"  text.

Anyone knows how can I put this property into the filename?

Thanks

&lt;/pre&gt;</description>
    <dc:creator>javijava</dc:creator>
    <dc:date>2010-01-14T16:51:41</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/782">
    <title>Issue with ADONET Appender</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/782</link>
    <description>&lt;pre&gt;Hi,

 

 

 

I have a requirement that,  need to switch among ADONET Appender,
EventLog Appender and Rolling File Appender. To switch from one appender
to another making other two appenders Loglevel to "Off" and then setting
it to "Debug" to enable it. This is working fine with Eventlog and
Rolling file appender but not working with ADONET appender. i.e if a
message has to write to Rolling file, it should not write to other two
appenders. In ADONET Appender, Consider I have written three messages
consecutively only the last entry will be there in the database. If I
don't make the level to "Off" for ADONET then it is writing all the
messages to the Database. Kindly suggest me in this regard. 

 

 

Ratna Kishore Kalvakolanu,

MEI Building, EC1, Electronic City,

Bangalore,

Mob: 9611777199.

 


Please do not print this email unless it is absolutely necessary. 

The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments. 

WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email. 

www.wipro.com
&lt;/pre&gt;</description>
    <dc:creator>ratna.kalvakolanu&lt; at &gt;wipro.com</dc:creator>
    <dc:date>2009-12-16T09:08:35</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/781">
    <title>[jira] Created: (LOG4NET-243) broken link on http://logging.apache.org/log4net/release/example-apps.html</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/781</link>
    <description>&lt;pre&gt;broken link on http://logging.apache.org/log4net/release/example-apps.html
--------------------------------------------------------------------------

                 Key: LOG4NET-243
                 URL: https://issues.apache.org/jira/browse/LOG4NET-243
             Project: Log4net
          Issue Type: Bug
          Components: Documentation
         Environment: web browser
            Reporter: Daniel Schobel
            Priority: Minor


the link in the text: "The following examples are only available in the log4net release download, not on-line. To obtain the examples download one of the log4net releases."  in the Overview section points to http://logging.apache.org/log4net/downloads.html 

whereas it should point to http://logging.apache.org/log4net/download.html . 

The current link yields a 404.

&lt;/pre&gt;</description>
    <dc:creator>Daniel Schobel (JIRA</dc:creator>
    <dc:date>2009-12-15T17:40:18</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/779">
    <title>Getting a signed version of the latest build of log4net</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/779</link>
    <description>&lt;pre&gt;Can anyone please tell me how I can get a signed version of log4net without signing it myself? We use N-Hibernate and would like to use the current version or log4net please.

Many thanks preet

######################################################################
Attention: 
Any e-mail sent from ADERANT may contain information which is CONFIDENTIAL and/or privileged. 
Unless you are the intended recipient, you may not disclose, copy or use it. 
Please notify the sender immediately and delete it and any copies from your systems.
You should protect your system from viruses etc.; we accept no responsibility for damage that may be caused by them.
######################################################################
&lt;/pre&gt;</description>
    <dc:creator>Preet Sangha</dc:creator>
    <dc:date>2009-12-13T22:28:09</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/778">
    <title>svn commit: r890026 - /logging/log4net/trunk/src/Layout/Pattern/StackTraceDetailPatternConverter.cs</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/778</link>
    <description>&lt;pre&gt;Author: rgrabowski
Date: Sun Dec 13 07:38:15 2009
New Revision: 890026

URL: http://svn.apache.org/viewvc?rev=890026&amp;amp;view=rev
Log:
Replaced .NET 2.0 Array.Resize with ArrayList.

Modified:
    logging/log4net/trunk/src/Layout/Pattern/StackTraceDetailPatternConverter.cs

Modified: logging/log4net/trunk/src/Layout/Pattern/StackTraceDetailPatternConverter.cs
URL: http://svn.apache.org/viewvc/logging/log4net/trunk/src/Layout/Pattern/StackTraceDetailPatternConverter.cs?rev=890026&amp;amp;r1=890025&amp;amp;r2=890026&amp;amp;view=diff
==============================================================================
--- logging/log4net/trunk/src/Layout/Pattern/StackTraceDetailPatternConverter.cs (original)
+++ logging/log4net/trunk/src/Layout/Pattern/StackTraceDetailPatternConverter.cs Sun Dec 13 07:38:15 2009
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1,4 +1,5 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 using System;
+using System.Collections;
 using System.Text;
 
 using log4net.Util;
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -53,17 +54,16 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 
         private string[] GetMethodParameterNames(System.Reflection.MethodBase methodBase)
         {
-            string[] returnValue = null;
+            ArrayList methodParameterNames = new ArrayList();
             try
             {
                 System.Reflection.ParameterInfo[] methodBaseGetParameters = methodBase.GetParameters();
                 
                 int methodBaseGetParametersCount = methodBaseGetParameters.GetUpperBound(0);
-                Array.Resize(ref returnValue, methodBaseGetParametersCount + 1);
 
                 for (int i = 0; i &amp;lt;= methodBaseGetParametersCount; i++)
                 {
-                    returnValue[i] = methodBaseGetParameters[i].ParameterType + " " + methodBaseGetParameters[i].Name;
+                    methodParameterNames.Add(methodBaseGetParameters[i].ParameterType + " " + methodBaseGetParameters[i].Name);
                 }
             }
             catch (Exception ex)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -71,7 +71,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
                 LogLog.Error(declaringType, "An exception ocurred while retreiving method parameters.", ex);
             }
 
-            return returnValue;
+            return (string[])methodParameterNames.ToArray(typeof (string));
         }
 
         #region Private Static Fields



&lt;/pre&gt;</description>
    <dc:creator>rgrabowski&lt; at &gt;apache.org</dc:creator>
    <dc:date>2009-12-13T07:38:16</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/777">
    <title>[GUMP&lt; at &gt;vmgump]: Project logging-log4net (in module logging-log4net) failed</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/777</link>
    <description>&lt;pre&gt;To whom it may engage...
        
This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at general&amp;lt; at &amp;gt;gump.apache.org.

Project logging-log4net has an issue affecting its community integration.
This issue affects 1 projects,
 and has been outstanding for 15 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
    - logging-log4net :  Logging framework for .NET.


Full details are available at:
    http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were provided:
 -INFO- Failed with reason build failed



The following work was performed:
http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/gump_work/build_logging-log4net_logging-log4net.html
Work Name: build_logging-log4net_logging-log4net (Type: Build)
Work ended in a state of : Failed
Elapsed: 15 secs
Command Line: NAnt.exe -D:java.awt.headless=true -D:gump.merge=/srv/gump/public/gump/work/merge.xml -D:build.sysclasspath=only -buildfile:log4net.build 
[Working Directory: /srv/gump/public/workspace/logging-log4net]
DEVPATH: 
---------------------------------------------

check-doc-dir:


check-sdkdoc-dir:


check-sdkdoc-debug:


check-current-build-config:


check-build-debug:


check-build-defines:


set-mono-1.0-runtime-configuration:

 [property] Target framework changed to "Mono 1.0 Profile".

check-log4net-basedir:


check-current-bin-dir:

    [mkdir] Creating directory '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug'.

clean-current-bin-dir:

     [echo] Cleaning the bin/mono/1.0/debug binaries directory.
   [delete] Deleting directory '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug'.
    [mkdir] Creating directory '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug'.

compile-mono-1.0:

      [csc] Compiling 216 files to '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug/log4net.dll'.
      [csc] /srv/gump/public/workspace/logging-log4net/src/Layout/Pattern/StackTraceDetailPatternConverter.cs(62,17): error CS0117: `System.Array' does not contain a definition for `Resize'
      [csc] /usr/lib/mono/1.0/mscorlib.dll (Location of the symbol related to previous error)
      [csc] Compilation failed: 1 error(s), 0 warnings

BUILD FAILED - 0 non-fatal error(s), 2 warning(s)

/srv/gump/public/workspace/logging-log4net/log4net.build(769,14):
External Program Failed: /usr/lib/mono/1.0/mcs.exe (return code was 1)

Total time: 12.1 seconds.

---------------------------------------------

To subscribe to this information via syndicated feeds:
- RSS: http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/rss.xml
- Atom: http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/atom.xml

============================== Gump Tracking Only ===
Produced by Gump version 2.3.
Gump Run 07000011122009, vmgump:vmgump-public:07000011122009
Gump E-mail Identifier (unique within run) #2.

--
Apache Gump
http://gump.apache.org/ [Instance: vmgump]

&lt;/pre&gt;</description>
    <dc:creator>carnold&lt; at &gt;apache.org</dc:creator>
    <dc:date>2009-12-11T08:32:53</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/776">
    <title>[GUMP&lt; at &gt;vmgump]: Project logging-log4net (in module logging-log4net) failed</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/776</link>
    <description>&lt;pre&gt;To whom it may engage...
        
This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at general&amp;lt; at &amp;gt;gump.apache.org.

Project logging-log4net has an issue affecting its community integration.
This issue affects 1 projects,
 and has been outstanding for 12 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
    - logging-log4net :  Logging framework for .NET.


Full details are available at:
    http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were provided:
 -INFO- Failed with reason build failed



The following work was performed:
http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/gump_work/build_logging-log4net_logging-log4net.html
Work Name: build_logging-log4net_logging-log4net (Type: Build)
Work ended in a state of : Failed
Elapsed: 9 secs
Command Line: NAnt.exe -D:java.awt.headless=true -D:gump.merge=/srv/gump/public/gump/work/merge.xml -D:build.sysclasspath=only -buildfile:log4net.build 
[Working Directory: /srv/gump/public/workspace/logging-log4net]
DEVPATH: 
---------------------------------------------

check-doc-dir:


check-sdkdoc-dir:


check-sdkdoc-debug:


check-current-build-config:


check-build-debug:


check-build-defines:


set-mono-1.0-runtime-configuration:

 [property] Target framework changed to "Mono 1.0 Profile".

check-log4net-basedir:


check-current-bin-dir:

    [mkdir] Creating directory '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug'.

clean-current-bin-dir:

     [echo] Cleaning the bin/mono/1.0/debug binaries directory.
   [delete] Deleting directory '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug'.
    [mkdir] Creating directory '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug'.

compile-mono-1.0:

      [csc] Compiling 216 files to '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug/log4net.dll'.
      [csc] /srv/gump/public/workspace/logging-log4net/src/Layout/Pattern/StackTraceDetailPatternConverter.cs(62,17): error CS0117: `System.Array' does not contain a definition for `Resize'
      [csc] /usr/lib/mono/1.0/mscorlib.dll (Location of the symbol related to previous error)
      [csc] Compilation failed: 1 error(s), 0 warnings

BUILD FAILED - 0 non-fatal error(s), 2 warning(s)

/srv/gump/public/workspace/logging-log4net/log4net.build(769,14):
External Program Failed: /usr/lib/mono/1.0/mcs.exe (return code was 1)

Total time: 6.3 seconds.

---------------------------------------------

To subscribe to this information via syndicated feeds:
- RSS: http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/rss.xml
- Atom: http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/atom.xml

============================== Gump Tracking Only ===
Produced by Gump version 2.3.
Gump Run 06000009122009, vmgump:vmgump-public:06000009122009
Gump E-mail Identifier (unique within run) #2.

--
Apache Gump
http://gump.apache.org/ [Instance: vmgump]

&lt;/pre&gt;</description>
    <dc:creator>carnold&lt; at &gt;apache.org</dc:creator>
    <dc:date>2009-12-09T08:41:04</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/775">
    <title>[jira] Created: (LOG4NET-242) Download page does not have link to KEYS file</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/775</link>
    <description>&lt;pre&gt;Download page does not have link to KEYS file
---------------------------------------------

                 Key: LOG4NET-242
                 URL: https://issues.apache.org/jira/browse/LOG4NET-242
             Project: Log4net
          Issue Type: Bug
          Components: Documentation
         Environment: http://logging.apache.org/log4net/download.html
            Reporter: Sebb
            Priority: Critical


The download page http://logging.apache.org/log4net/download.html has a link describing why one should verify releases, but fails to provide a link to the relevant KEYS file



&lt;/pre&gt;</description>
    <dc:creator>Sebb (JIRA</dc:creator>
    <dc:date>2009-12-08T23:53:18</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/774">
    <title>[jira] Created: (LOG4NET-241) Issue tracking page does not link to project</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/774</link>
    <description>&lt;pre&gt;Issue tracking page does not link to project
--------------------------------------------

                 Key: LOG4NET-241
                 URL: https://issues.apache.org/jira/browse/LOG4NET-241
             Project: Log4net
          Issue Type: Bug
          Components: Documentation
         Environment: http://logging.apache.org/log4net/issue-tracking.html
            Reporter: Sebb


The issue tracking page http://logging.apache.org/log4net/issue-tracking.html links to http://issues.apache.org/jira/ which is not particularly helpful.

It should link to http://issues.apache.org/jira/browse/LOG4NET or https://issues.apache.org/jira/browse/LOG4NET



&lt;/pre&gt;</description>
    <dc:creator>Sebb (JIRA</dc:creator>
    <dc:date>2009-12-08T23:49:18</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/773">
    <title>Adding appenders programmatically</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/773</link>
    <description>&lt;pre&gt;
Hello

I am a beginner in log4net and i am trying to add an appender in my code and
then to send an email in case of an Error. My program runs but i never
receive the email. Can you please let me know what s wrong in my code (PS: i
am not using a config file)


 Dim test2 As log4net.Appender.SmtpAppender = New
log4net.Appender.SmtpAppender()
        test2.To = toto&amp;lt; at &amp;gt;hotmail.com
        test2.From = toto&amp;lt; at &amp;gt;hotmail.com
        test2.Subject = "test Email report"
        test2.SmtpHost = "localhost"
        test2.BufferSize = 1
        test2.Lossy = true

        Dim layout As log4net.Layout.PatternLayout = New
log4net.Layout.PatternLayout()
        layout.ConversionPattern = "%newline%message"
        test2.Layout = layout
        test2.ActivateOptions()


       
        Dim l As log4net.Repository.Hierarchy.Logger =
log4net.LogManager.GetLogger("EmailLog").Logger
        l.Level = log4net.Core.Level.Error
        l.Additivity = True
        l.Repository.Configured = True
        l.AddAppender(test2)
         


        msg = "test test test" &amp;amp; vbNewLine &amp;amp; vbNewLine

     
        Dim logger As log4net.ILog =
log4net.LogManager.GetLogger("EmailLog")
        logger.Error(msg)


Thank you for your help
&lt;/pre&gt;</description>
    <dc:creator>begLog</dc:creator>
    <dc:date>2009-12-08T22:37:19</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/769">
    <title>[GUMP&lt; at &gt;vmgump]: Project logging-log4net (in module logging-log4net) failed</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4net.devel/769</link>
    <description>&lt;pre&gt;To whom it may engage...
        
This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at general&amp;lt; at &amp;gt;gump.apache.org.

Project logging-log4net has an issue affecting its community integration.
This issue affects 1 projects,
 and has been outstanding for 9 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
    - logging-log4net :  Logging framework for .NET.


Full details are available at:
    http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were provided:
 -INFO- Failed with reason build failed



The following work was performed:
http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/gump_work/build_logging-log4net_logging-log4net.html
Work Name: build_logging-log4net_logging-log4net (Type: Build)
Work ended in a state of : Failed
Elapsed: 17 secs
Command Line: NAnt.exe -D:java.awt.headless=true -D:gump.merge=/srv/gump/public/gump/work/merge.xml -D:build.sysclasspath=only -buildfile:log4net.build 
[Working Directory: /srv/gump/public/workspace/logging-log4net]
DEVPATH: 
---------------------------------------------

check-doc-dir:


check-sdkdoc-dir:


check-sdkdoc-debug:


check-current-build-config:


check-build-debug:


check-build-defines:


set-mono-1.0-runtime-configuration:

 [property] Target framework changed to "Mono 1.0 Profile".

check-log4net-basedir:


check-current-bin-dir:

    [mkdir] Creating directory '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug'.

clean-current-bin-dir:

     [echo] Cleaning the bin/mono/1.0/debug binaries directory.
   [delete] Deleting directory '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug'.
    [mkdir] Creating directory '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug'.

compile-mono-1.0:

      [csc] Compiling 216 files to '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug/log4net.dll'.
      [csc] /srv/gump/public/workspace/logging-log4net/src/Layout/Pattern/StackTraceDetailPatternConverter.cs(62,17): error CS0117: `System.Array' does not contain a definition for `Resize'
      [csc] /usr/lib/mono/1.0/mscorlib.dll (Location of the symbol related to previous error)
      [csc] Compilation failed: 1 error(s), 0 warnings

BUILD FAILED - 0 non-fatal error(s), 2 warning(s)

/srv/gump/public/workspace/logging-log4net/log4net.build(769,14):
External Program Failed: /usr/lib/mono/1.0/mcs.exe (return code was 1)

Total time: 9.5 seconds.

---------------------------------------------

To subscribe to this information via syndicated feeds:
- RSS: http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/rss.xml
- Atom: http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/atom.xml

============================== Gump Tracking Only ===
Produced by Gump version 2.3.
Gump Run 16000007122009, vmgump:vmgump-public:16000007122009
Gump E-mail Identifier (unique within run) #2.

--
Apache Gump
http://gump.apache.org/ [Instance: vmgump]

&lt;/pre&gt;</description>
    <dc:creator>carnold&lt; at &gt;apache.org</dc:creator>
    <dc:date>2009-12-07T08:36:08</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>
