<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-14324</id>
	<title>Nabble - Log4net</title>
	<updated>2009-12-17T10:17:10Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Log4net-f14324.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Log4net-f14324.html" />
	<subtitle type="html"></subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26832571</id>
	<title>Re: configuration for timout/buffer forward appender</title>
	<published>2009-12-17T10:17:10Z</published>
	<updated>2009-12-17T10:17:10Z</updated>
	<author>
		<name>Loren Keagle</name>
	</author>
	<content type="html">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
  &lt;meta content=&quot;text/html; charset=ISO-8859-1&quot; http-equiv=&quot;Content-Type&quot;&gt;
&lt;/head&gt;
&lt;body bgcolor=&quot;#ffffff&quot; text=&quot;#000000&quot;&gt;
On 12/17/2009 8:10 AM, Barvaz Barvaz wrote:
&lt;blockquote cite=&quot;mid:4259971a0912170810q445eda26rdca83158c4dd636a@mail.gmail.com&quot; type=&quot;cite&quot;&gt;
  &lt;meta http-equiv=&quot;Context-Type&quot; content=&quot;text/html; charset=ISO-8859-1&quot;&gt;
  &lt;div&gt;Hi,&lt;br&gt;
  &lt;br&gt;
I'd like to know if it's possible to configure an appender (or a
forward appender) that can do the following:&lt;br&gt;
1. Buffer all incoming log messages, in a loss-less manner&lt;br&gt;
2.
Flush the buffer when it reaches N messages, OR when a timeout of T
seconds reached since the first message (since app start or last flush)&lt;br&gt;
3. Flush the buffer if the application is terminated.&lt;br&gt;
  &lt;br&gt;
Do you think this is achievable?&lt;br&gt;
  &lt;br&gt;
Thanks,&lt;br&gt;
  &lt;br&gt;
-BM &lt;/div&gt;
  &lt;br&gt;
&lt;/blockquote&gt;
&lt;br&gt;
It's easily done.&amp;nbsp; I had to do this for a Remoting appender, but you
could easily adapt it to an buffered appender, or maybe add it to the
base class.&amp;nbsp; You can us a different timer, or even a thread if you have
limitations on using the thread pool.&lt;br&gt;
&lt;br&gt;
~Loren&lt;br&gt;
&lt;br&gt;
public class TimedRemotingAppender : RemotingAppender&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public TimedRemotingAppender()&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FlushPeriod = 10;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; timer = new Timer(FlushBuffer);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /// &amp;lt;summary&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /// The period, in seconds, at which the buffer is sent
regardless of being full&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /// &amp;lt;/summary&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public int FlushPeriod { get; set; }&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; private readonly Timer timer;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; private void FlushBuffer(object state) { Flush(); }&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; protected override void Append(LoggingEvent loggingEvent)&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; base.Append(loggingEvent);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; timer.Change(FlushPeriod * 1000, Timeout.Infinite);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&lt;/body&gt;
&lt;/html&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Users-f154.html&quot; embed=&quot;fixTarget[154]&quot; target=&quot;_top&quot; &gt;Log4net - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/configuration-for-timout-buffer-forward-appender-tp26830495p26832571.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26830495</id>
	<title>configuration for timout/buffer forward appender</title>
	<published>2009-12-17T08:10:28Z</published>
	<updated>2009-12-17T08:10:28Z</updated>
	<author>
		<name>Barvaz Barvaz</name>
	</author>
	<content type="html">&lt;div dir=&quot;ltr&quot;&gt;Hi,&lt;br&gt;&lt;br&gt;I&amp;#39;d like to know if it&amp;#39;s possible to configure an appender (or a forward appender) that can do the following:&lt;br&gt;1. Buffer all incoming log messages, in a loss-less manner&lt;br&gt;2.
Flush the buffer when it reaches N messages, OR when a timeout of T
seconds reached since the first message (since app start or last flush)&lt;br&gt;
3. Flush the buffer if the application is terminated.&lt;br&gt;&lt;br&gt;Do you think this is achievable?&lt;br&gt;&lt;br&gt;Thanks,&lt;br&gt;&lt;br&gt;-BM &lt;/div&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Users-f154.html&quot; embed=&quot;fixTarget[154]&quot; target=&quot;_top&quot; &gt;Log4net - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/configuration-for-timout-buffer-forward-appender-tp26830495p26830495.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26808235</id>
	<title>Issue with ADONET Appender</title>
	<published>2009-12-16T01:08:35Z</published>
	<updated>2009-12-16T01:08:35Z</updated>
	<author>
		<name>ratna.kalvakolanu</name>
	</author>
	<content type="html">&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:m=&quot;http://schemas.microsoft.com/office/2004/12/omml&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;
&lt;meta http-equiv=Content-Type content=&quot;text/html; charset=us-ascii&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 12 (filtered medium)&quot;&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;

&lt;body lang=EN-US link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoPlainText&gt;Hi,&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;I have a requirement that,&amp;nbsp; 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 &amp;quot;Off&amp;quot;
and then setting it to &amp;quot;Debug&amp;quot; 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 &amp;quot;Off&amp;quot; for ADONET then it is writing all the messages
to the Database. Kindly suggest me in this regard. &lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;div style='mso-element:para-border-div;border:none;border-bottom:solid #4F81BD 1.0pt;
padding:0in 0in 1.0pt 0in'&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:10.0pt;margin-right:0in;
margin-bottom:4.0pt;margin-left:0in;border:none;padding:0in'&gt;&lt;b&gt;&lt;span style='font-size:12.0pt;font-family:&quot;Copperplate Gothic Light&quot;,&quot;sans-serif&quot;;
color:#E36C0A'&gt;Ratna Kishore Kalvakolanu&lt;/span&gt;&lt;/b&gt;&lt;span style='font-size:12.0pt;
font-family:&quot;Copperplate Gothic Light&quot;,&quot;sans-serif&quot;;color:#E36C0A'&gt;,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;p class=MsoNormal&gt;MEI Building, EC1, Electronic City,&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;Bangalore,&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;Mob: 9611777199.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;P&gt;&lt;strong&gt;&lt;span style='font-size:10.0pt;font-family:
&quot;Palatino Linotype&quot;,&quot;serif&quot;;color:green'&gt; Please do not print this email unless it is absolutely necessary. &lt;/span&gt;&lt;/strong&gt;&lt;span style='font-family:&quot;Arial&quot;,&quot;sans-serif&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;


&lt;p&gt; 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. &lt;/p&gt;

&lt;p&gt;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. &lt;/p&gt;
&lt;p&gt;
www.wipro.com
&lt;/p&gt;
&lt;/body&gt;

&lt;/html&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Dev-f155.html&quot; embed=&quot;fixTarget[155]&quot; target=&quot;_top&quot; &gt;Log4net - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Issue-with-ADONET-Appender-tp26808235p26808235.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26798693</id>
	<title>[jira] Created: (LOG4NET-243) broken link on http://logging.apache.org/log4net/release/example-apps.html</title>
	<published>2009-12-15T09:40:18Z</published>
	<updated>2009-12-15T09:40:18Z</updated>
	<author>
		<name>JIRA jira@apache.org</name>
	</author>
	<content type="html">broken link on &lt;a href=&quot;http://logging.apache.org/log4net/release/example-apps.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://logging.apache.org/log4net/release/example-apps.html&lt;/a&gt;&lt;br&gt;--------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: LOG4NET-243
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;https://issues.apache.org/jira/browse/LOG4NET-243&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/browse/LOG4NET-243&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: Log4net
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Components: Documentation
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Environment: web browser
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Daniel Schobel
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Priority: Minor
&lt;br&gt;&lt;br&gt;&lt;br&gt;the link in the text: &amp;quot;The following examples are only available in the log4net release download, not on-line. To obtain the examples download one of the log4net releases.&amp;quot; &amp;nbsp;in the Overview section points to &lt;a href=&quot;http://logging.apache.org/log4net/downloads.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://logging.apache.org/log4net/downloads.html&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;whereas it should point to &lt;a href=&quot;http://logging.apache.org/log4net/download.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://logging.apache.org/log4net/download.html&lt;/a&gt;&amp;nbsp;. 
&lt;br&gt;&lt;br&gt;The current link yields a 404.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;You can reply to this email to add a comment to the issue online.
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Dev-f155.html&quot; embed=&quot;fixTarget[155]&quot; target=&quot;_top&quot; &gt;Log4net - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28LOG4NET-243%29-broken-link-on-http%3A--logging.apache.org-log4net-release-example-apps.html-tp26798693p26798693.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26787750</id>
	<title>Re: Getting a signed version of the latest build of log4net</title>
	<published>2009-12-14T16:52:35Z</published>
	<updated>2009-12-14T16:52:35Z</updated>
	<author>
		<name>Ron Grabowski</name>
	</author>
	<content type="html">&lt;html&gt;&lt;head&gt;&lt;/head&gt;&lt;body&gt;&lt;div style=&quot;font-family:times new roman,new york,times,serif;font-size:12pt&quot;&gt;&lt;div&gt;You should be able to build both from their respective trunks then reference your build where appropriate?&lt;br&gt;&lt;/div&gt;&lt;div style=&quot;font-family: times new roman,new york,times,serif; font-size: 12pt;&quot;&gt;&lt;br&gt;&lt;div style=&quot;font-family: times new roman,new york,times,serif; font-size: 12pt;&quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot;&gt;&lt;hr size=&quot;1&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;From:&lt;/span&gt;&lt;/b&gt; Preet Sangha &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26787750&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;preet.sangha@...&lt;/a&gt;&amp;gt;&lt;br&gt;&lt;b&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;To:&lt;/span&gt;&lt;/b&gt; &quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26787750&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;log4net-dev@...&lt;/a&gt;&quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26787750&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;log4net-dev@...&lt;/a&gt;&amp;gt;&lt;br&gt;&lt;b&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Sent:&lt;/span&gt;&lt;/b&gt; Sun, December 13, 2009 5:28:09 PM&lt;br&gt;&lt;b&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Subject:&lt;/span&gt;&lt;/b&gt; Getting a signed version of the latest build of log4net&lt;br&gt;&lt;/font&gt;&lt;br&gt;&lt;meta http-equiv=&quot;x-dns-prefetch-control&quot; content=&quot;off&quot;&gt;


 
 




&lt;div class=&quot;Section1&quot;&gt;

&lt;p class=&quot;MsoNormal&quot;&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.&lt;/p&gt; 

&lt;p class=&quot;MsoNormal&quot;&gt; &amp;nbsp;&lt;/p&gt; 

&lt;p class=&quot;MsoNormal&quot;&gt;Many thanks preet&lt;/p&gt; 

&lt;/div&gt;


&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;Arial&quot;&gt;
&lt;/font&gt;&lt;/font&gt;&lt;p&gt;
&lt;/p&gt;&lt;hr&gt;
&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;Arial&quot;&gt;&lt;/font&gt;&lt;font face=&quot;Arial&quot;&gt;&lt;strong&gt;&lt;font color=&quot;#ff0000&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;Attention:&lt;/font&gt; &lt;/font&gt;&lt;/strong&gt;&lt;br&gt;&lt;span style=&quot;font-size: 8pt; font-family: 'Arial','sans-serif';&quot; lang=&quot;EN-US&quot;&gt;Any 
e-mail sent from ADERANT may contain information which is CONFIDENTIAL and/or 
privileged. &lt;br&gt;&lt;/span&gt;&lt;/font&gt;&lt;font face=&quot;Arial&quot;&gt;&lt;span style=&quot;font-size: 8pt; font-family: 'Arial','sans-serif';&quot; lang=&quot;EN-US&quot;&gt;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. 
&lt;br&gt;You should protect your system from viruses etc.; we accept no 
responsibility for damage that may be caused by them.&lt;/span&gt;&lt;/font&gt;&lt;font face=&quot;Arial&quot;&gt; 
&lt;hr&gt;

&lt;p&gt;&lt;/p&gt;&lt;/font&gt;
&lt;/font&gt;&lt;p&gt;&lt;/p&gt;&lt;font size=&quot;2&quot;&gt;&lt;/font&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;meta http-equiv=&quot;x-dns-prefetch-control&quot; content=&quot;on&quot;&gt;&lt;/div&gt;&lt;/div&gt;
&lt;!-- cg10.c1.mail.mud.yahoo.com compressed/chunked Mon Dec 14 16:46:05 PST 2009 --&gt;
&lt;/div&gt;&lt;/body&gt;&lt;/html&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Dev-f155.html&quot; embed=&quot;fixTarget[155]&quot; target=&quot;_top&quot; &gt;Log4net - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Getting-a-signed-version-of-the-latest-build-of-log4net-tp26770399p26787750.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26770399</id>
	<title>Getting a signed version of the latest build of log4net</title>
	<published>2009-12-13T14:28:09Z</published>
	<updated>2009-12-13T14:28:09Z</updated>
	<author>
		<name>Preet Sangha</name>
	</author>
	<content type="html">&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:x=&quot;urn:schemas-microsoft-com:office:excel&quot; xmlns:p=&quot;urn:schemas-microsoft-com:office:powerpoint&quot; xmlns:a=&quot;urn:schemas-microsoft-com:office:access&quot; xmlns:dt=&quot;uuid:C2F41010-65B3-11d1-A29F-00AA00C14882&quot; xmlns:s=&quot;uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882&quot; xmlns:rs=&quot;urn:schemas-microsoft-com:rowset&quot; xmlns:Z=&quot;urn:schemas-microsoft-com:&quot; xmlns:b=&quot;urn:schemas-microsoft-com:office:publisher&quot; xmlns:ss=&quot;urn:schemas-microsoft-com:office:spreadsheet&quot; xmlns:c=&quot;urn:schemas-microsoft-com:office:component:spreadsheet&quot; xmlns:odc=&quot;urn:schemas-microsoft-com:office:odc&quot; xmlns:oa=&quot;urn:schemas-microsoft-com:office:activation&quot; xmlns:html=&quot;http://www.w3.org/TR/REC-html40&quot; xmlns:q=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; xmlns:rtc=&quot;http://microsoft.com/officenet/conferencing&quot; xmlns:D=&quot;DAV:&quot; xmlns:Repl=&quot;http://schemas.microsoft.com/repl/&quot; xmlns:mt=&quot;http://schemas.microsoft.com/sharepoint/soap/meetings/&quot; xmlns:x2=&quot;http://schemas.microsoft.com/office/excel/2003/xml&quot; xmlns:ppda=&quot;http://www.passport.com/NameSpace.xsd&quot; xmlns:ois=&quot;http://schemas.microsoft.com/sharepoint/soap/ois/&quot; xmlns:dir=&quot;http://schemas.microsoft.com/sharepoint/soap/directory/&quot; xmlns:ds=&quot;http://www.w3.org/2000/09/xmldsig#&quot; xmlns:dsp=&quot;http://schemas.microsoft.com/sharepoint/dsp&quot; xmlns:udc=&quot;http://schemas.microsoft.com/data/udc&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:sub=&quot;http://schemas.microsoft.com/sharepoint/soap/2002/1/alerts/&quot; xmlns:ec=&quot;http://www.w3.org/2001/04/xmlenc#&quot; xmlns:sp=&quot;http://schemas.microsoft.com/sharepoint/&quot; xmlns:sps=&quot;http://schemas.microsoft.com/sharepoint/soap/&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xmlns:udcs=&quot;http://schemas.microsoft.com/data/udc/soap&quot; xmlns:udcxf=&quot;http://schemas.microsoft.com/data/udc/xmlfile&quot; xmlns:udcp2p=&quot;http://schemas.microsoft.com/data/udc/parttopart&quot; xmlns:wf=&quot;http://schemas.microsoft.com/sharepoint/soap/workflow/&quot; xmlns:dsss=&quot;http://schemas.microsoft.com/office/2006/digsig-setup&quot; xmlns:dssi=&quot;http://schemas.microsoft.com/office/2006/digsig&quot; xmlns:mdssi=&quot;http://schemas.openxmlformats.org/package/2006/digital-signature&quot; xmlns:mver=&quot;http://schemas.openxmlformats.org/markup-compatibility/2006&quot; xmlns:m=&quot;http://schemas.microsoft.com/office/2004/12/omml&quot; xmlns:mrels=&quot;http://schemas.openxmlformats.org/package/2006/relationships&quot; xmlns:spwp=&quot;http://microsoft.com/sharepoint/webpartpages&quot; xmlns:ex12t=&quot;http://schemas.microsoft.com/exchange/services/2006/types&quot; xmlns:ex12m=&quot;http://schemas.microsoft.com/exchange/services/2006/messages&quot; xmlns:pptsl=&quot;http://schemas.microsoft.com/sharepoint/soap/SlideLibrary/&quot; xmlns:spsl=&quot;http://microsoft.com/webservices/SharePointPortalServer/PublishedLinksService&quot; xmlns:st=&quot;&amp;#1;&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;
&lt;META HTTP-EQUIV=&quot;Content-Type&quot; CONTENT=&quot;text/html; charset=us-ascii&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 12 (filtered medium)&quot;&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;

&lt;body lang=EN-NZ link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&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.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;Many thanks preet&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;


&lt;FONT size=2&gt;&lt;FONT face=Arial&gt;
&lt;P&gt;
&lt;HR&gt;
&lt;/FONT&gt;&lt;FONT face=Arial&gt;&lt;STRONG&gt;&lt;FONT color=#ff0000&gt;&lt;FONT color=#000000&gt;Attention:&lt;/FONT&gt; &lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR&gt;&lt;SPAN lang=EN-US style=&quot;FONT-SIZE: 8pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-NZ; mso-bidi-language: AR-SA&quot;&gt;Any 
e-mail sent from ADERANT may contain information which is CONFIDENTIAL and/or 
privileged. &lt;BR&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face=Arial&gt;&lt;SPAN lang=EN-US style=&quot;FONT-SIZE: 8pt; FONT-FAMILY: 'Arial','sans-serif'; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-NZ; mso-bidi-language: AR-SA&quot;&gt;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. 
&lt;BR&gt;You should protect your system from viruses etc.; we accept no 
responsibility for damage that may be caused by them.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face=Arial&gt; 
&lt;HR&gt;

&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;
&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;/body&gt;

&lt;/html&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Dev-f155.html&quot; embed=&quot;fixTarget[155]&quot; target=&quot;_top&quot; &gt;Log4net - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Getting-a-signed-version-of-the-latest-build-of-log4net-tp26770399p26770399.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26764183</id>
	<title>svn commit: r890026 - /logging/log4net/trunk/src/Layout/Pattern/StackTraceDetailPatternConverter.cs</title>
	<published>2009-12-12T23:38:16Z</published>
	<updated>2009-12-12T23:38:16Z</updated>
	<author>
		<name>rgrabowski</name>
	</author>
	<content type="html">Author: rgrabowski
&lt;br&gt;Date: Sun Dec 13 07:38:15 2009
&lt;br&gt;New Revision: 890026
&lt;br&gt;&lt;br&gt;URL: &lt;a href=&quot;http://svn.apache.org/viewvc?rev=890026&amp;view=rev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://svn.apache.org/viewvc?rev=890026&amp;view=rev&lt;/a&gt;&lt;br&gt;Log:
&lt;br&gt;Replaced .NET 2.0 Array.Resize with ArrayList.
&lt;br&gt;&lt;br&gt;Modified:
&lt;br&gt;&amp;nbsp; &amp;nbsp; logging/log4net/trunk/src/Layout/Pattern/StackTraceDetailPatternConverter.cs
&lt;br&gt;&lt;br&gt;Modified: logging/log4net/trunk/src/Layout/Pattern/StackTraceDetailPatternConverter.cs
&lt;br&gt;URL: &lt;a href=&quot;http://svn.apache.org/viewvc/logging/log4net/trunk/src/Layout/Pattern/StackTraceDetailPatternConverter.cs?rev=890026&amp;r1=890025&amp;r2=890026&amp;view=diff&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://svn.apache.org/viewvc/logging/log4net/trunk/src/Layout/Pattern/StackTraceDetailPatternConverter.cs?rev=890026&amp;r1=890025&amp;r2=890026&amp;view=diff&lt;/a&gt;&lt;br&gt;==============================================================================
&lt;br&gt;--- logging/log4net/trunk/src/Layout/Pattern/StackTraceDetailPatternConverter.cs (original)
&lt;br&gt;+++ logging/log4net/trunk/src/Layout/Pattern/StackTraceDetailPatternConverter.cs Sun Dec 13 07:38:15 2009
&lt;br&gt;@@ -1,4 +1,5 @@
&lt;br&gt;&amp;nbsp;using System;
&lt;br&gt;+using System.Collections;
&lt;br&gt;&amp;nbsp;using System.Text;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;using log4net.Util;
&lt;br&gt;@@ -53,17 +54,16 @@
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;private string[] GetMethodParameterNames(System.Reflection.MethodBase methodBase)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;string[] returnValue = null;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ArrayList methodParameterNames = new ArrayList();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;try
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;System.Reflection.ParameterInfo[] methodBaseGetParameters = methodBase.GetParameters();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;int methodBaseGetParametersCount = methodBaseGetParameters.GetUpperBound(0);
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Array.Resize(ref returnValue, methodBaseGetParametersCount + 1);
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;for (int i = 0; i &amp;lt;= methodBaseGetParametersCount; i++)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;returnValue[i] = methodBaseGetParameters[i].ParameterType + &amp;quot; &amp;quot; + methodBaseGetParameters[i].Name;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;methodParameterNames.Add(methodBaseGetParameters[i].ParameterType + &amp;quot; &amp;quot; + methodBaseGetParameters[i].Name);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;catch (Exception ex)
&lt;br&gt;@@ -71,7 +71,7 @@
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;LogLog.Error(declaringType, &amp;quot;An exception ocurred while retreiving method parameters.&amp;quot;, ex);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return returnValue;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return (string[])methodParameterNames.ToArray(typeof (string));
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;#region Private Static Fields
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Dev-f155.html&quot; embed=&quot;fixTarget[155]&quot; target=&quot;_top&quot; &gt;Log4net - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/svn-commit%3A-r890026----logging-log4net-trunk-src-Layout-Pattern-StackTraceDetailPatternConverter.cs-tp26764183p26764183.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26742123</id>
	<title>[GUMP@vmgump]: Project logging-log4net (in module logging-log4net) failed</title>
	<published>2009-12-11T00:32:53Z</published>
	<updated>2009-12-11T00:32:53Z</updated>
	<author>
		<name>Curt Arnold-3</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26742123&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project logging-log4net has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects,
&lt;br&gt;&amp;nbsp;and has been outstanding for 15 runs.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - logging-log4net : &amp;nbsp;Logging framework for .NET.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/gump_work/build_logging-log4net_logging-log4net.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/gump_work/build_logging-log4net_logging-log4net.html&lt;/a&gt;&lt;br&gt;Work Name: build_logging-log4net_logging-log4net (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 15 secs
&lt;br&gt;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 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/logging-log4net]
&lt;br&gt;DEVPATH: 
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;check-doc-dir:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-sdkdoc-dir:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-sdkdoc-debug:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-current-build-config:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-build-debug:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-build-defines:
&lt;br&gt;&lt;br&gt;&lt;br&gt;set-mono-1.0-runtime-configuration:
&lt;br&gt;&lt;br&gt;&amp;nbsp;[property] Target framework changed to &amp;quot;Mono 1.0 Profile&amp;quot;.
&lt;br&gt;&lt;br&gt;check-log4net-basedir:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-current-bin-dir:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; [mkdir] Creating directory '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug'.
&lt;br&gt;&lt;br&gt;clean-current-bin-dir:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[echo] Cleaning the bin/mono/1.0/debug binaries directory.
&lt;br&gt;&amp;nbsp; &amp;nbsp;[delete] Deleting directory '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug'.
&lt;br&gt;&amp;nbsp; &amp;nbsp; [mkdir] Creating directory '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug'.
&lt;br&gt;&lt;br&gt;compile-mono-1.0:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [csc] Compiling 216 files to '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug/log4net.dll'.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [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'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [csc] /usr/lib/mono/1.0/mscorlib.dll (Location of the symbol related to previous error)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [csc] Compilation failed: 1 error(s), 0 warnings
&lt;br&gt;&lt;br&gt;BUILD FAILED - 0 non-fatal error(s), 2 warning(s)
&lt;br&gt;&lt;br&gt;/srv/gump/public/workspace/logging-log4net/log4net.build(769,14):
&lt;br&gt;External Program Failed: /usr/lib/mono/1.0/mcs.exe (return code was 1)
&lt;br&gt;&lt;br&gt;Total time: 12.1 seconds.
&lt;br&gt;&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 07000011122009, vmgump:vmgump-public:07000011122009
&lt;br&gt;Gump E-mail Identifier (unique within run) #2.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Dev-f155.html&quot; embed=&quot;fixTarget[155]&quot; target=&quot;_top&quot; &gt;Log4net - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-logging-log4net-%28in-module-logging-log4net%29-failed-tp26742123p26742123.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26707949</id>
	<title>Re: Customized mail subject fo SmtpAppender</title>
	<published>2009-12-09T02:16:03Z</published>
	<updated>2009-12-09T02:16:03Z</updated>
	<author>
		<name>Petite Escalope</name>
	</author>
	<content type="html">Thank you :)&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;2009/12/8 Pascal ROZE &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26707949&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pascal.roze@...&lt;/a&gt;&amp;gt;&lt;/span&gt;&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
Hi&lt;br&gt;&lt;br&gt;Look at this: &lt;a href=&quot;http://www.codeproject.com/KB/cs/log4net_SmtpAppender.aspx&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.codeproject.com/KB/cs/log4net_SmtpAppender.aspx&lt;/a&gt;&lt;br&gt;&lt;br&gt;Cheers&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;2009/12/7 Petite Escalope &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26707949&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;miniscalope@...&lt;/a&gt;&amp;gt;&lt;/span&gt;&lt;div&gt;
&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;&lt;br&gt;

&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;&lt;div class=&quot;gmail_quote&quot;&gt;Hello,&lt;div&gt;I am using log4net for a web project and would like to make customized mail subjects my email appender. I already tried something like :&lt;/div&gt;


&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;b&gt;          &amp;lt;subject type=&amp;quot;log4net.Util.PatternString&amp;quot; value=&amp;quot;CovCake LOG INFO : %property{mailsubject}&amp;quot; /&amp;gt;&lt;/b&gt;&lt;/div&gt;

&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;blockquote style=&quot;border: medium none ; margin: 0pt 0pt 0pt 40px; padding: 0px;&quot;&gt;&lt;b&gt; public static void MailInfo(string msg, string subjectDetails)&lt;/b&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;            {&lt;/b&gt;&lt;/div&gt;



&lt;div&gt;&lt;b&gt;                log4net.ThreadContext.Properties[&amp;quot;mailsubject&amp;quot;] = subjectDetails;&lt;/b&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;                &lt;a href=&quot;http://Log.Mail.Info&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;Log.Mail.Info&lt;/a&gt;(msg);&lt;/b&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;                log4net.ThreadContext.Properties.Clear();&lt;/b&gt;&lt;/div&gt;




&lt;div&gt;&lt;b&gt;            }&lt;/b&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;&lt;br&gt;&lt;/b&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;But it renders &lt;span style=&quot;font-weight: bold;&quot;&gt;CovCake LOG INFO : (null).&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;&lt;br&gt;&lt;/b&gt;&lt;/div&gt;&lt;div&gt;Is there a way to customize mail subject natively (i mean without overriding existing classes or extending the SmtpAppender)?&lt;/div&gt;




&lt;div&gt;&lt;b&gt;&lt;br&gt;&lt;/b&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;T&lt;/b&gt;hank you very much. Sorry for my english.&lt;/div&gt;&lt;div&gt;   &lt;/div&gt;&lt;span style=&quot;font-family: arial,sans-serif;&quot;&gt;Best &lt;i style=&quot;font-style: normal;&quot;&gt;regards&lt;/i&gt;&lt;/span&gt;&lt;br&gt;

&lt;/div&gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;Cordialement&lt;br&gt;&lt;br&gt;Alexandre Codjovi &lt;br&gt;06 59 08 39 82&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26707949&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;alexandre@...&lt;/a&gt;&lt;br&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Users-f154.html&quot; embed=&quot;fixTarget[154]&quot; target=&quot;_top&quot; &gt;Log4net - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Customized-mail-subject-fo-SmtpAppender-tp26583765p26707949.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26708368</id>
	<title>[GUMP@vmgump]: Project logging-log4net (in module logging-log4net) failed</title>
	<published>2009-12-09T00:41:04Z</published>
	<updated>2009-12-09T00:41:04Z</updated>
	<author>
		<name>Curt Arnold-3</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26708368&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project logging-log4net has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects,
&lt;br&gt;&amp;nbsp;and has been outstanding for 12 runs.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - logging-log4net : &amp;nbsp;Logging framework for .NET.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/gump_work/build_logging-log4net_logging-log4net.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/gump_work/build_logging-log4net_logging-log4net.html&lt;/a&gt;&lt;br&gt;Work Name: build_logging-log4net_logging-log4net (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 9 secs
&lt;br&gt;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 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/logging-log4net]
&lt;br&gt;DEVPATH: 
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;check-doc-dir:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-sdkdoc-dir:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-sdkdoc-debug:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-current-build-config:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-build-debug:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-build-defines:
&lt;br&gt;&lt;br&gt;&lt;br&gt;set-mono-1.0-runtime-configuration:
&lt;br&gt;&lt;br&gt;&amp;nbsp;[property] Target framework changed to &amp;quot;Mono 1.0 Profile&amp;quot;.
&lt;br&gt;&lt;br&gt;check-log4net-basedir:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-current-bin-dir:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; [mkdir] Creating directory '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug'.
&lt;br&gt;&lt;br&gt;clean-current-bin-dir:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[echo] Cleaning the bin/mono/1.0/debug binaries directory.
&lt;br&gt;&amp;nbsp; &amp;nbsp;[delete] Deleting directory '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug'.
&lt;br&gt;&amp;nbsp; &amp;nbsp; [mkdir] Creating directory '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug'.
&lt;br&gt;&lt;br&gt;compile-mono-1.0:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [csc] Compiling 216 files to '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug/log4net.dll'.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [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'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [csc] /usr/lib/mono/1.0/mscorlib.dll (Location of the symbol related to previous error)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [csc] Compilation failed: 1 error(s), 0 warnings
&lt;br&gt;&lt;br&gt;BUILD FAILED - 0 non-fatal error(s), 2 warning(s)
&lt;br&gt;&lt;br&gt;/srv/gump/public/workspace/logging-log4net/log4net.build(769,14):
&lt;br&gt;External Program Failed: /usr/lib/mono/1.0/mcs.exe (return code was 1)
&lt;br&gt;&lt;br&gt;Total time: 6.3 seconds.
&lt;br&gt;&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 06000009122009, vmgump:vmgump-public:06000009122009
&lt;br&gt;Gump E-mail Identifier (unique within run) #2.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Dev-f155.html&quot; embed=&quot;fixTarget[155]&quot; target=&quot;_top&quot; &gt;Log4net - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-logging-log4net-%28in-module-logging-log4net%29-failed-tp26708368p26708368.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26704816</id>
	<title>Re: Partial logging with windows service</title>
	<published>2009-12-08T19:54:09Z</published>
	<updated>2009-12-08T19:54:09Z</updated>
	<author>
		<name>jclegall</name>
	</author>
	<content type="html">Awesome. Resolved!
&lt;br&gt;Thanks!
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Alexander-106 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Try this;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; private void GetLogger()
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (_log != null) return;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; log4net.Config.XmlConfigurator.Configure();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; _log = LogManager.GetLogger(&amp;quot;MyWindowsServices&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&lt;br&gt;2009/12/8 jclegall &amp;lt;jclegall@cpaglobal.com&amp;gt;:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have implemented log4net for a windows service, but I get a partial
&lt;br&gt;&amp;gt; logging.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Here is the code for my windows service:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; private ILog _log;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; protected override void OnStart(string[] args)
&lt;br&gt;&amp;gt; {
&lt;br&gt;&amp;gt;  GetLogger();
&lt;br&gt;&amp;gt;  _log.Info(&amp;quot;Starting Services&amp;quot;);
&lt;br&gt;&amp;gt;  _log.Info(&amp;quot;Loading configuration file&amp;quot;);
&lt;br&gt;&amp;gt;  //Additional code here...
&lt;br&gt;&amp;gt;  _log.Info(&amp;quot;Service is running...&amp;quot;);
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; protected override void OnStop()
&lt;br&gt;&amp;gt; {
&lt;br&gt;&amp;gt;  GetLogger();
&lt;br&gt;&amp;gt;  _log.Info(&amp;quot;Stopping Services&amp;quot;);
&lt;br&gt;&amp;gt;  //Additional code here
&lt;br&gt;&amp;gt;  _log.Info(&amp;quot;Services Stopped&amp;quot;);
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;  private void GetLogger()
&lt;br&gt;&amp;gt;  {
&lt;br&gt;&amp;gt;   if (_log == null)
&lt;br&gt;&amp;gt;   {
&lt;br&gt;&amp;gt;     _log = LogManager.GetLogger(&amp;quot;MyWindowsServices&amp;quot;);
&lt;br&gt;&amp;gt;   }
&lt;br&gt;&amp;gt;  }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; My adapter is:
&lt;br&gt;&amp;gt;  &amp;lt;log4net&amp;gt;
&lt;br&gt;&amp;gt;    &amp;lt;!-- Levels  (from lowest to highest):  ALL | DEBUG | INFO | WARN |
&lt;br&gt;&amp;gt; ERROR | FATAL | OFF | --&amp;gt;
&lt;br&gt;&amp;gt;    &amp;lt;root&amp;gt;
&lt;br&gt;&amp;gt;      &amp;lt;level value=&amp;quot;ALL&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;      &amp;lt;appender-ref ref=&amp;quot;RollingFileAppender&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;    &amp;lt;/root&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;    &amp;lt;logger name=&amp;quot;MyWindowsServices&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;      &amp;lt;level value=&amp;quot;ALL&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt;    &amp;lt;/logger&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;    &amp;lt;appender name=&amp;quot;RollingFileAppender&amp;quot;
&lt;br&gt;&amp;gt; type=&amp;quot;log4net.Appender.RollingFileAppender&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;      &amp;lt;file value=&amp;quot;My.Windows.Services.log&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;      &amp;lt;appendToFile value=&amp;quot;true&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;      &amp;lt;rollingStyle value=&amp;quot;Composite&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;      &amp;lt;datePattern value=&amp;quot;yyyyMMdd&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;      &amp;lt;maxSizeRollBackups value=&amp;quot;10&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;      &amp;lt;maximumFileSize value=&amp;quot;3MB&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;      &amp;lt;staticLogFileName value=&amp;quot;true&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;      &amp;lt;immediateFlush value=&amp;quot;true&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;      &amp;lt;layout type=&amp;quot;log4net.Layout.PatternLayout&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;        &amp;lt;header value=&amp;quot;[Session Start]&amp;#13;&amp;#10;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt;        &amp;lt;footer value=&amp;quot;[Session End]&amp;#13;&amp;#10;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt;        &amp;lt;conversionPattern value=&amp;quot;%date [%thread] %-5level %logger
&lt;br&gt;&amp;gt; [%property{NDC}] - %message%newline&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;      &amp;lt;/layout&amp;gt;
&lt;br&gt;&amp;gt;    &amp;lt;/appender&amp;gt;
&lt;br&gt;&amp;gt;  &amp;lt;/log4net&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The result of my log file contains only the log information from the Start
&lt;br&gt;&amp;gt; method of the windows service, but nothing for the stop:
&lt;br&gt;&amp;gt; [Session Start]
&lt;br&gt;&amp;gt; 2009-12-09 10:39:13,986 [4] INFO  MyWindowsServices [(null)] - Starting
&lt;br&gt;&amp;gt; Services
&lt;br&gt;&amp;gt; 2009-12-09 10:39:14,018 [4] INFO  MyWindowsServices [(null)] - Loading
&lt;br&gt;&amp;gt; configuration file
&lt;br&gt;&amp;gt; 2009-12-09 10:39:14,033 [4] INFO  MyWindowsServices [(null)] - Service is
&lt;br&gt;&amp;gt; running...
&lt;br&gt;&amp;gt; [Session End]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; What's wrong?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks for your help!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://old.nabble.com/Partial-logging-with-windows-service-tp26703955p26703955.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/Partial-logging-with-windows-service-tp26703955p26703955.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the Log4net - Users mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sincerely,
&lt;br&gt;Alexander N.
&lt;br&gt;Ogden Nash &amp;nbsp;- &amp;quot;The trouble with a kitten is that when it grows up,
&lt;br&gt;it's always a cat.&amp;quot; -
&lt;br&gt;&lt;a href=&quot;http://www.brainyquote.com/quotes/authors/o/ogden_nash.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.brainyquote.com/quotes/authors/o/ogden_nash.html&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Users-f154.html&quot; embed=&quot;fixTarget[154]&quot; target=&quot;_top&quot; &gt;Log4net - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Partial-logging-with-windows-service-tp26703955p26704816.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26704404</id>
	<title>Re: Partial logging with windows service</title>
	<published>2009-12-08T18:57:14Z</published>
	<updated>2009-12-08T18:57:14Z</updated>
	<author>
		<name>Alexander-106</name>
	</author>
	<content type="html">Try this;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; private void GetLogger()
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (_log != null) return;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; log4net.Config.XmlConfigurator.Configure();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; _log = LogManager.GetLogger(&amp;quot;MyWindowsServices&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&lt;br&gt;2009/12/8 jclegall &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26704404&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jclegall@...&lt;/a&gt;&amp;gt;:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have implemented log4net for a windows service, but I get a partial
&lt;br&gt;&amp;gt; logging.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Here is the code for my windows service:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; private ILog _log;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; protected override void OnStart(string[] args)
&lt;br&gt;&amp;gt; {
&lt;br&gt;&amp;gt;  GetLogger();
&lt;br&gt;&amp;gt;  _log.Info(&amp;quot;Starting Services&amp;quot;);
&lt;br&gt;&amp;gt;  _log.Info(&amp;quot;Loading configuration file&amp;quot;);
&lt;br&gt;&amp;gt;  //Additional code here...
&lt;br&gt;&amp;gt;  _log.Info(&amp;quot;Service is running...&amp;quot;);
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; protected override void OnStop()
&lt;br&gt;&amp;gt; {
&lt;br&gt;&amp;gt;  GetLogger();
&lt;br&gt;&amp;gt;  _log.Info(&amp;quot;Stopping Services&amp;quot;);
&lt;br&gt;&amp;gt;  //Additional code here
&lt;br&gt;&amp;gt;  _log.Info(&amp;quot;Services Stopped&amp;quot;);
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;  private void GetLogger()
&lt;br&gt;&amp;gt;  {
&lt;br&gt;&amp;gt;   if (_log == null)
&lt;br&gt;&amp;gt;   {
&lt;br&gt;&amp;gt;     _log = LogManager.GetLogger(&amp;quot;MyWindowsServices&amp;quot;);
&lt;br&gt;&amp;gt;   }
&lt;br&gt;&amp;gt;  }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; My adapter is:
&lt;br&gt;&amp;gt;  &amp;lt;log4net&amp;gt;
&lt;br&gt;&amp;gt;    &amp;lt;!-- Levels  (from lowest to highest):  ALL | DEBUG | INFO | WARN |
&lt;br&gt;&amp;gt; ERROR | FATAL | OFF | --&amp;gt;
&lt;br&gt;&amp;gt;    &amp;lt;root&amp;gt;
&lt;br&gt;&amp;gt;      &amp;lt;level value=&amp;quot;ALL&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;      &amp;lt;appender-ref ref=&amp;quot;RollingFileAppender&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;    &amp;lt;/root&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;    &amp;lt;logger name=&amp;quot;MyWindowsServices&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;      &amp;lt;level value=&amp;quot;ALL&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt;    &amp;lt;/logger&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;    &amp;lt;appender name=&amp;quot;RollingFileAppender&amp;quot;
&lt;br&gt;&amp;gt; type=&amp;quot;log4net.Appender.RollingFileAppender&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;      &amp;lt;file value=&amp;quot;My.Windows.Services.log&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;      &amp;lt;appendToFile value=&amp;quot;true&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;      &amp;lt;rollingStyle value=&amp;quot;Composite&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;      &amp;lt;datePattern value=&amp;quot;yyyyMMdd&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;      &amp;lt;maxSizeRollBackups value=&amp;quot;10&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;      &amp;lt;maximumFileSize value=&amp;quot;3MB&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;      &amp;lt;staticLogFileName value=&amp;quot;true&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;      &amp;lt;immediateFlush value=&amp;quot;true&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;      &amp;lt;layout type=&amp;quot;log4net.Layout.PatternLayout&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;        &amp;lt;header value=&amp;quot;[Session Start]&amp;#13;&amp;#10;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt;        &amp;lt;footer value=&amp;quot;[Session End]&amp;#13;&amp;#10;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt;        &amp;lt;conversionPattern value=&amp;quot;%date [%thread] %-5level %logger
&lt;br&gt;&amp;gt; [%property{NDC}] - %message%newline&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;      &amp;lt;/layout&amp;gt;
&lt;br&gt;&amp;gt;    &amp;lt;/appender&amp;gt;
&lt;br&gt;&amp;gt;  &amp;lt;/log4net&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The result of my log file contains only the log information from the Start
&lt;br&gt;&amp;gt; method of the windows service, but nothing for the stop:
&lt;br&gt;&amp;gt; [Session Start]
&lt;br&gt;&amp;gt; 2009-12-09 10:39:13,986 [4] INFO  MyWindowsServices [(null)] - Starting
&lt;br&gt;&amp;gt; Services
&lt;br&gt;&amp;gt; 2009-12-09 10:39:14,018 [4] INFO  MyWindowsServices [(null)] - Loading
&lt;br&gt;&amp;gt; configuration file
&lt;br&gt;&amp;gt; 2009-12-09 10:39:14,033 [4] INFO  MyWindowsServices [(null)] - Service is
&lt;br&gt;&amp;gt; running...
&lt;br&gt;&amp;gt; [Session End]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; What's wrong?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks for your help!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://old.nabble.com/Partial-logging-with-windows-service-tp26703955p26703955.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/Partial-logging-with-windows-service-tp26703955p26703955.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the Log4net - Users mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sincerely,
&lt;br&gt;Alexander N.
&lt;br&gt;Ogden Nash &amp;nbsp;- &amp;quot;The trouble with a kitten is that when it grows up,
&lt;br&gt;it's always a cat.&amp;quot; -
&lt;br&gt;&lt;a href=&quot;http://www.brainyquote.com/quotes/authors/o/ogden_nash.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.brainyquote.com/quotes/authors/o/ogden_nash.html&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Users-f154.html&quot; embed=&quot;fixTarget[154]&quot; target=&quot;_top&quot; &gt;Log4net - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Partial-logging-with-windows-service-tp26703955p26704404.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26703955</id>
	<title>Partial logging with windows service</title>
	<published>2009-12-08T17:53:36Z</published>
	<updated>2009-12-08T17:53:36Z</updated>
	<author>
		<name>jclegall</name>
	</author>
	<content type="html">I have implemented log4net for a windows service, but I get a partial logging.
&lt;br&gt;&lt;br&gt;Here is the code for my windows service:
&lt;br&gt;&lt;br&gt;private ILog _log;
&lt;br&gt;&lt;br&gt;protected override void OnStart(string[] args)
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; GetLogger();
&lt;br&gt;&amp;nbsp; _log.Info(&amp;quot;Starting Services&amp;quot;);
&lt;br&gt;&amp;nbsp; _log.Info(&amp;quot;Loading configuration file&amp;quot;);
&lt;br&gt;&amp;nbsp; //Additional code here...
&lt;br&gt;&amp;nbsp; _log.Info(&amp;quot;Service is running...&amp;quot;);
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;protected override void OnStop()
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; GetLogger();
&lt;br&gt;&amp;nbsp; _log.Info(&amp;quot;Stopping Services&amp;quot;);
&lt;br&gt;&amp;nbsp; //Additional code here
&lt;br&gt;&amp;nbsp; _log.Info(&amp;quot;Services Stopped&amp;quot;);
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;&amp;nbsp;private void GetLogger()
&lt;br&gt;&amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp;if (_log == null)
&lt;br&gt;&amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;_log = LogManager.GetLogger(&amp;quot;MyWindowsServices&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp;}
&lt;br&gt;&lt;br&gt;My appender is:
&lt;br&gt;&amp;nbsp; &amp;lt;log4net&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;!-- Levels &amp;nbsp;(from lowest to highest): &amp;nbsp;ALL | DEBUG | INFO | WARN | ERROR | FATAL | OFF | --&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;root&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;level value=&amp;quot;ALL&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;appender-ref ref=&amp;quot;RollingFileAppender&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/root&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;logger name=&amp;quot;MyWindowsServices&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;level value=&amp;quot;ALL&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/logger&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;appender name=&amp;quot;RollingFileAppender&amp;quot; type=&amp;quot;log4net.Appender.RollingFileAppender&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;file value=&amp;quot;My.Windows.Services.log&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;appendToFile value=&amp;quot;true&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;rollingStyle value=&amp;quot;Composite&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;datePattern value=&amp;quot;yyyyMMdd&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;maxSizeRollBackups value=&amp;quot;10&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;maximumFileSize value=&amp;quot;3MB&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;staticLogFileName value=&amp;quot;true&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;immediateFlush value=&amp;quot;true&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;layout type=&amp;quot;log4net.Layout.PatternLayout&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;header value=&amp;quot;[Session Start]&amp;#13;&amp;#10;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;footer value=&amp;quot;[Session End]&amp;#13;&amp;#10;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;conversionPattern value=&amp;quot;%date [%thread] %-5level %logger [%property{NDC}] - %message%newline&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/layout&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/appender&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;/log4net&amp;gt;
&lt;br&gt;&lt;br&gt;The result of my log file contains only the log information from the Start method of the windows service, but nothing for the stop:
&lt;br&gt;[Session Start]
&lt;br&gt;2009-12-09 10:39:13,986 [4] INFO &amp;nbsp;MyWindowsServices [(null)] - Starting Services
&lt;br&gt;2009-12-09 10:39:14,018 [4] INFO &amp;nbsp;MyWindowsServices [(null)] - Loading configuration file
&lt;br&gt;2009-12-09 10:39:14,033 [4] INFO &amp;nbsp;MyWindowsServices [(null)] - Service is running...
&lt;br&gt;[Session End]
&lt;br&gt;&lt;br&gt;What's wrong?
&lt;br&gt;&lt;br&gt;Thanks for your help!
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Users-f154.html&quot; embed=&quot;fixTarget[154]&quot; target=&quot;_top&quot; &gt;Log4net - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Partial-logging-with-windows-service-tp26703955p26703955.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26702989</id>
	<title>[jira] Created: (LOG4NET-242) Download page does not have link to KEYS file</title>
	<published>2009-12-08T15:53:18Z</published>
	<updated>2009-12-08T15:53:18Z</updated>
	<author>
		<name>JIRA jira@apache.org</name>
	</author>
	<content type="html">Download page does not have link to KEYS file
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: LOG4NET-242
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;https://issues.apache.org/jira/browse/LOG4NET-242&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/browse/LOG4NET-242&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: Log4net
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Components: Documentation
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Environment: &lt;a href=&quot;http://logging.apache.org/log4net/download.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://logging.apache.org/log4net/download.html&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Sebb
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Priority: Critical
&lt;br&gt;&lt;br&gt;&lt;br&gt;The download page &lt;a href=&quot;http://logging.apache.org/log4net/download.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://logging.apache.org/log4net/download.html&lt;/a&gt;&amp;nbsp;has a link describing why one should verify releases, but fails to provide a link to the relevant KEYS file
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;You can reply to this email to add a comment to the issue online.
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Dev-f155.html&quot; embed=&quot;fixTarget[155]&quot; target=&quot;_top&quot; &gt;Log4net - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28LOG4NET-242%29-Download-page-does-not-have-link-to-KEYS-file-tp26702989p26702989.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26702953</id>
	<title>[jira] Created: (LOG4NET-241) Issue tracking page does not link to project</title>
	<published>2009-12-08T15:49:18Z</published>
	<updated>2009-12-08T15:49:18Z</updated>
	<author>
		<name>JIRA jira@apache.org</name>
	</author>
	<content type="html">Issue tracking page does not link to project
&lt;br&gt;--------------------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: LOG4NET-241
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;https://issues.apache.org/jira/browse/LOG4NET-241&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/browse/LOG4NET-241&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: Log4net
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Components: Documentation
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Environment: &lt;a href=&quot;http://logging.apache.org/log4net/issue-tracking.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://logging.apache.org/log4net/issue-tracking.html&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Sebb
&lt;br&gt;&lt;br&gt;&lt;br&gt;The issue tracking page &lt;a href=&quot;http://logging.apache.org/log4net/issue-tracking.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://logging.apache.org/log4net/issue-tracking.html&lt;/a&gt;&amp;nbsp;links to &lt;a href=&quot;http://issues.apache.org/jira/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://issues.apache.org/jira/&lt;/a&gt;&amp;nbsp;which is not particularly helpful.
&lt;br&gt;&lt;br&gt;It should link to &lt;a href=&quot;http://issues.apache.org/jira/browse/LOG4NET&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://issues.apache.org/jira/browse/LOG4NET&lt;/a&gt;&amp;nbsp;or &lt;a href=&quot;https://issues.apache.org/jira/browse/LOG4NET&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/browse/LOG4NET&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;You can reply to this email to add a comment to the issue online.
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Dev-f155.html&quot; embed=&quot;fixTarget[155]&quot; target=&quot;_top&quot; &gt;Log4net - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28LOG4NET-241%29-Issue-tracking-page-does-not-link-to-project-tp26702953p26702953.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26702085</id>
	<title>Adding appenders programmatically</title>
	<published>2009-12-08T14:37:18Z</published>
	<updated>2009-12-08T14:37:18Z</updated>
	<author>
		<name>begLog</name>
	</author>
	<content type="html">Hello
&lt;br&gt;&lt;br&gt;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)
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;Dim test2 As log4net.Appender.SmtpAppender = New log4net.Appender.SmtpAppender()
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; test2.To = toto@hotmail.com
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; test2.From = toto@hotmail.com
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; test2.Subject = &amp;quot;test Email report&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; test2.SmtpHost = &amp;quot;localhost&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; test2.BufferSize = 1
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; test2.Lossy = true
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dim layout As log4net.Layout.PatternLayout = New log4net.Layout.PatternLayout()
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; layout.ConversionPattern = &amp;quot;%newline%message&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; test2.Layout = layout
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; test2.ActivateOptions()
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dim l As log4net.Repository.Hierarchy.Logger = log4net.LogManager.GetLogger(&amp;quot;EmailLog&amp;quot;).Logger
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; l.Level = log4net.Core.Level.Error
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; l.Additivity = True
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; l.Repository.Configured = True
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; l.AddAppender(test2)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; msg = &amp;quot;test test test&amp;quot; &amp; vbNewLine &amp; vbNewLine
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dim logger As log4net.ILog = log4net.LogManager.GetLogger(&amp;quot;EmailLog&amp;quot;)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; logger.Error(msg)
&lt;br&gt;&lt;br&gt;&lt;br&gt;Thank you for your help&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Dev-f155.html&quot; embed=&quot;fixTarget[155]&quot; target=&quot;_top&quot; &gt;Log4net - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Adding-appenders-programmatically-tp26702085p26702085.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26694015</id>
	<title>[jira] Commented: (LOG4NET-164) using a named mutex for file appenders</title>
	<published>2009-12-08T05:37:18Z</published>
	<updated>2009-12-08T05:37:18Z</updated>
	<author>
		<name>JIRA jira@apache.org</name>
	</author>
	<content type="html">&lt;br&gt;&amp;nbsp; &amp;nbsp; [ &lt;a href=&quot;https://issues.apache.org/jira/browse/LOG4NET-164?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12787457#action_12787457&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/browse/LOG4NET-164?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12787457#action_12787457&lt;/a&gt;&amp;nbsp;] 
&lt;br&gt;&lt;br&gt;Eike-Peter Falk commented on LOG4NET-164:
&lt;br&gt;-----------------------------------------
&lt;br&gt;&lt;br&gt;I find InterProcessLock better than MutexLock, cause Mutex is a rather general term.
&lt;br&gt;How about SystemWideLock? GlobalLock?
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; using a named mutex for file appenders
&lt;br&gt;&amp;gt; --------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: LOG4NET-164
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;https://issues.apache.org/jira/browse/LOG4NET-164&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/browse/LOG4NET-164&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: Log4net
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: Improvement
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Components: Appenders
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Frank
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assignee: Ron Grabowski
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Fix For: 1.2.11
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Attachments: MutexProcessLock.patch
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; Original Estimate: 24h
&lt;br&gt;&amp;gt; &amp;nbsp;Remaining Estimate: 24h
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; About logging to the same file from 2 or more instances of an application.
&lt;br&gt;&amp;gt; As opposed to a minimallock which makes it still possible for 2 application instances to interfere. Why not use a named mutex so that the logging will wait for the lock to be released from another instance.
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;You can reply to this email to add a comment to the issue online.
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Dev-f155.html&quot; embed=&quot;fixTarget[155]&quot; target=&quot;_top&quot; &gt;Log4net - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28LOG4NET-164%29-using-a-named-mutex-for-file-appenders-tp18360573p26694015.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26690472</id>
	<title>Re: Customized mail subject fo SmtpAppender</title>
	<published>2009-12-08T00:42:51Z</published>
	<updated>2009-12-08T00:42:51Z</updated>
	<author>
		<name>Pascal ROZE</name>
	</author>
	<content type="html">Hi&lt;br&gt;&lt;br&gt;Look at this: &lt;a href=&quot;http://www.codeproject.com/KB/cs/log4net_SmtpAppender.aspx&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.codeproject.com/KB/cs/log4net_SmtpAppender.aspx&lt;/a&gt;&lt;br&gt;&lt;br&gt;Cheers&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;2009/12/7 Petite Escalope &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26690472&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;miniscalope@...&lt;/a&gt;&amp;gt;&lt;/span&gt;&lt;br&gt;

&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;&lt;div class=&quot;gmail_quote&quot;&gt;Hello,&lt;div&gt;I am using log4net for a web project and would like to make customized mail subjects my email appender. I already tried something like :&lt;/div&gt;

&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;b&gt;          &amp;lt;subject type=&amp;quot;log4net.Util.PatternString&amp;quot; value=&amp;quot;CovCake LOG INFO : %property{mailsubject}&amp;quot; /&amp;gt;&lt;/b&gt;&lt;/div&gt;

&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;blockquote style=&quot;border: medium none ; margin: 0pt 0pt 0pt 40px; padding: 0px;&quot;&gt;&lt;b&gt; public static void MailInfo(string msg, string subjectDetails)&lt;/b&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;            {&lt;/b&gt;&lt;/div&gt;


&lt;div&gt;&lt;b&gt;                log4net.ThreadContext.Properties[&amp;quot;mailsubject&amp;quot;] = subjectDetails;&lt;/b&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;                &lt;a href=&quot;http://Log.Mail.Info&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;Log.Mail.Info&lt;/a&gt;(msg);&lt;/b&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;                log4net.ThreadContext.Properties.Clear();&lt;/b&gt;&lt;/div&gt;



&lt;div&gt;&lt;b&gt;            }&lt;/b&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;&lt;br&gt;&lt;/b&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;But it renders &lt;span style=&quot;font-weight: bold;&quot;&gt;CovCake LOG INFO : (null).&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;&lt;br&gt;&lt;/b&gt;&lt;/div&gt;&lt;div&gt;Is there a way to customize mail subject natively (i mean without overriding existing classes or extending the SmtpAppender)?&lt;/div&gt;



&lt;div&gt;&lt;b&gt;&lt;br&gt;&lt;/b&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;T&lt;/b&gt;hank you very much. Sorry for my english.&lt;/div&gt;&lt;div&gt;   &lt;/div&gt;&lt;span style=&quot;font-family: arial,sans-serif;&quot;&gt;Best &lt;i style=&quot;font-style: normal;&quot;&gt;regards&lt;/i&gt;&lt;/span&gt;&lt;br&gt;

&lt;/div&gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Users-f154.html&quot; embed=&quot;fixTarget[154]&quot; target=&quot;_top&quot; &gt;Log4net - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Customized-mail-subject-fo-SmtpAppender-tp26583765p26690472.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26682469</id>
	<title>Customized mail subject fo SmtpAppender</title>
	<published>2009-12-07T11:12:21Z</published>
	<updated>2009-12-07T11:12:21Z</updated>
	<author>
		<name>Petite Escalope</name>
	</author>
	<content type="html">&lt;div class=&quot;gmail_quote&quot;&gt;Hello,&lt;div&gt;I am using log4net for a web project and would like to make customized mail subjects my email appender. I already tried something like :&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;b&gt;          &amp;lt;subject type=&amp;quot;log4net.Util.PatternString&amp;quot; value=&amp;quot;CovCake LOG INFO : %property{mailsubject}&amp;quot; /&amp;gt;&lt;/b&gt;&lt;/div&gt;

&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;blockquote style=&quot;margin:0 0 0 40px;border:none;padding:0px&quot;&gt;&lt;b&gt; public static void MailInfo(string msg, string subjectDetails)&lt;/b&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;            {&lt;/b&gt;&lt;/div&gt;
&lt;div&gt;&lt;b&gt;                log4net.ThreadContext.Properties[&amp;quot;mailsubject&amp;quot;] = subjectDetails;&lt;/b&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;                &lt;a href=&quot;http://Log.Mail.Info&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;Log.Mail.Info&lt;/a&gt;(msg);&lt;/b&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;                log4net.ThreadContext.Properties.Clear();&lt;/b&gt;&lt;/div&gt;

&lt;div&gt;&lt;b&gt;            }&lt;/b&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;&lt;br&gt;&lt;/b&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;But it renders &lt;span style=&quot;font-weight:bold&quot;&gt;CovCake LOG INFO : (null).&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;&lt;br&gt;&lt;/b&gt;&lt;/div&gt;&lt;div&gt;Is there a way to customize mail subject natively (i mean without overriding existing classes or extending the SmtpAppender)?&lt;/div&gt;

&lt;div&gt;&lt;b&gt;&lt;br&gt;&lt;/b&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;T&lt;/b&gt;hank you very much. Sorry for my english.&lt;/div&gt;&lt;div&gt;   &lt;/div&gt;&lt;span style=&quot;font-family:arial, sans-serif&quot;&gt;Best &lt;em style=&quot;font-style: normal; &quot;&gt;regards&lt;/em&gt;&lt;/span&gt;&lt;br&gt;

&lt;/div&gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Users-f154.html&quot; embed=&quot;fixTarget[154]&quot; target=&quot;_top&quot; &gt;Log4net - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Customized-mail-subject-fo-SmtpAppender-tp26583765p26682469.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26681478</id>
	<title>Re: Using RollingFileAppender with style=Date.</title>
	<published>2009-12-07T10:12:08Z</published>
	<updated>2009-12-07T10:12:08Z</updated>
	<author>
		<name>Petr Felzmann-2</name>
	</author>
	<content type="html">Look at this&lt;br&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/LOG4NET-27&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/browse/LOG4NET-27&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Petr&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;2009/12/1 David Gerler &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26681478&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dgerler@...&lt;/a&gt;&amp;gt;&lt;/span&gt;&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;








&lt;div link=&quot;blue&quot; vlink=&quot;purple&quot; lang=&quot;EN-US&quot;&gt;

&lt;div&gt;

&lt;div&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt;How do I make it only keep a certain number of files when using
the rollingstyle = date? I’ve looked on the website and have not been able to
find an example of anything talking about it. This is what I have now:&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt;    &amp;lt;appender name=&amp;quot;Communications&amp;quot;
type=&amp;quot;log4net.Appender.RollingFileAppender&amp;quot;&amp;gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt;                &amp;lt;file
value=&amp;quot;c:/log/register/gis/communications.txt&amp;quot; /&amp;gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt;                &amp;lt;appendToFile value=&amp;quot;true&amp;quot; /&amp;gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt;                 &amp;lt;maxSizeRollBackups value=&amp;quot;10&amp;quot;
/&amp;gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent: 0.5in;&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt;&amp;lt;rollingStyle
value=&amp;quot;Date&amp;quot; /&amp;gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt;                 &amp;lt;datePattern value=&amp;quot;yyyyMMdd-HHmm&amp;quot;
/&amp;gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt;                &amp;lt;layout
type=&amp;quot;log4net.Layout.PatternLayout&amp;quot;&amp;gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt;                                &amp;lt;header
value=&amp;quot;[Header]&amp;amp;#xD;&amp;amp;#xA;&amp;quot; /&amp;gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt;                                &amp;lt;footer
value=&amp;quot;[Footer]&amp;amp;#xD;&amp;amp;#xA;&amp;quot; /&amp;gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt;                                &amp;lt;conversionPattern
value=&amp;quot;%date [%thread] %-5level %logger (%file:%line) -
%message%newline&amp;quot; /&amp;gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt;                &amp;lt;/layout&amp;gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt;    &amp;lt;/appender&amp;gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt;It doesn’t delete the files when I get to 10.&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;/div&gt;


&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Users-f154.html&quot; embed=&quot;fixTarget[154]&quot; target=&quot;_top&quot; &gt;Log4net - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Customized-mail-subject-fo-SmtpAppender-tp26583765p26681478.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26678662</id>
	<title>Re: [GUMP@vmgump]: Project logging-log4net (in module logging-log4net) failed</title>
	<published>2009-12-07T07:15:20Z</published>
	<updated>2009-12-07T07:15:20Z</updated>
	<author>
		<name>Ron Grabowski</name>
	</author>
	<content type="html">Looks like Array.Resize is a .NET 2.0 feature.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;----- Original Message ----
&lt;br&gt;From: &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26678662&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;carnold@...&lt;/a&gt;&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26678662&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;carnold@...&lt;/a&gt;&amp;gt;
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26678662&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;log4net-dev@...&lt;/a&gt;
&lt;br&gt;Sent: Mon, December 7, 2009 3:36:08 AM
&lt;br&gt;Subject: [GUMP@vmgump]: Project logging-log4net (in module logging-log4net) failed
&lt;br&gt;&lt;br&gt;[snip]
&lt;br&gt;&lt;br&gt;compile-mono-1.0:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [csc] Compiling 216 files to '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug/log4net.dll'.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [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'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [csc] /usr/lib/mono/1.0/mscorlib.dll (Location of the symbol related to previous error)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [csc] Compilation failed: 1 error(s), 0 warnings
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Dev-f155.html&quot; embed=&quot;fixTarget[155]&quot; target=&quot;_top&quot; &gt;Log4net - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-logging-log4net-%28in-module-logging-log4net%29-failed-tp26675494p26678662.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26678641</id>
	<title>Re: how to contribute?</title>
	<published>2009-12-07T07:13:59Z</published>
	<updated>2009-12-07T07:13:59Z</updated>
	<author>
		<name>Ron Grabowski</name>
	</author>
	<content type="html">Hi Eike, I received your email. The best thing to do is comment, vote, or write patches for these items for the 1.2.11 release:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;mode=hide&amp;sorter/order=DESC&amp;sorter/field=priority&amp;resolution=-1&amp;pid=10690&amp;fixfor=12310980&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;mode=hide&amp;sorter/order=DESC&amp;sorter/field=priority&amp;resolution=-1&amp;pid=10690&amp;fixfor=12310980&lt;/a&gt;&lt;br&gt;&lt;br&gt;If you think any of the other open items should be included post a comment on those tickets as well.
&lt;br&gt;&lt;br&gt;This ticket implements a FileAppender locking model using a Mutex:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/LOG4NET-164&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/browse/LOG4NET-164&lt;/a&gt;&lt;br&gt;&lt;br&gt;I'd like someone to review my code before I close the ticket. Do you think MutexLock is a good name for the class?
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://svn.apache.org/viewvc/logging/log4net/trunk/src/Appender/FileAppender.cs?view=markup&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://svn.apache.org/viewvc/logging/log4net/trunk/src/Appender/FileAppender.cs?view=markup&lt;/a&gt;&lt;br&gt;&lt;br&gt;Is there a better name such that the implementation isn't the same name as the class or is it ok in this situation?
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;----- Original Message ----
&lt;br&gt;From: Eike Falk &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26678641&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;eikefalk@...&lt;/a&gt;&amp;gt;
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26678641&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;log4net-dev@...&lt;/a&gt;
&lt;br&gt;Sent: Mon, December 7, 2009 4:36:44 AM
&lt;br&gt;Subject: how to contribute?
&lt;br&gt;&lt;br&gt;Hello Ron, I have written you an email last week to your configured email address 
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26678641&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rongrabowski@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;regarding how I might contribute to the log4net project.
&lt;br&gt;Maybe this address is not the right one?
&lt;br&gt;&lt;br&gt;Could you pl. let me know if and how I could contribute to the project?
&lt;br&gt;&lt;br&gt;Thx,
&lt;br&gt;Eike Falk
&lt;br&gt;&lt;br&gt;&lt;br&gt;______________________________________________________
&lt;br&gt;GRATIS für alle WEB.DE-Nutzer: Die maxdome Movie-FLAT!
&lt;br&gt;Jetzt freischalten unter &lt;a href=&quot;http://movieflat.web.de&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://movieflat.web.de&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Dev-f155.html&quot; embed=&quot;fixTarget[155]&quot; target=&quot;_top&quot; &gt;Log4net - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/how-to-contribute--tp26674757p26678641.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26674757</id>
	<title>how to contribute?</title>
	<published>2009-12-07T01:36:44Z</published>
	<updated>2009-12-07T01:36:44Z</updated>
	<author>
		<name>Eike Falk</name>
	</author>
	<content type="html">Hello Ron, I have written you an email last week to your configured email address 
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26674757&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rongrabowski@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;regarding how I might contribute to the log4net project.
&lt;br&gt;Maybe this address is not the right one?
&lt;br&gt;&lt;br&gt;Could you pl. let me know if and how I could contribute to the project?
&lt;br&gt;&lt;br&gt;Thx,
&lt;br&gt;Eike Falk
&lt;br&gt;&lt;br&gt;&lt;br&gt;______________________________________________________
&lt;br&gt;GRATIS für alle WEB.DE-Nutzer: Die maxdome Movie-FLAT!
&lt;br&gt;Jetzt freischalten unter &lt;a href=&quot;http://movieflat.web.de&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://movieflat.web.de&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Dev-f155.html&quot; embed=&quot;fixTarget[155]&quot; target=&quot;_top&quot; &gt;Log4net - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/how-to-contribute--tp26674757p26674757.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26675494</id>
	<title>[GUMP@vmgump]: Project logging-log4net (in module logging-log4net) failed</title>
	<published>2009-12-07T00:36:08Z</published>
	<updated>2009-12-07T00:36:08Z</updated>
	<author>
		<name>Curt Arnold-3</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26675494&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project logging-log4net has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects,
&lt;br&gt;&amp;nbsp;and has been outstanding for 9 runs.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - logging-log4net : &amp;nbsp;Logging framework for .NET.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/gump_work/build_logging-log4net_logging-log4net.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/gump_work/build_logging-log4net_logging-log4net.html&lt;/a&gt;&lt;br&gt;Work Name: build_logging-log4net_logging-log4net (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 17 secs
&lt;br&gt;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 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/logging-log4net]
&lt;br&gt;DEVPATH: 
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;check-doc-dir:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-sdkdoc-dir:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-sdkdoc-debug:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-current-build-config:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-build-debug:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-build-defines:
&lt;br&gt;&lt;br&gt;&lt;br&gt;set-mono-1.0-runtime-configuration:
&lt;br&gt;&lt;br&gt;&amp;nbsp;[property] Target framework changed to &amp;quot;Mono 1.0 Profile&amp;quot;.
&lt;br&gt;&lt;br&gt;check-log4net-basedir:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-current-bin-dir:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; [mkdir] Creating directory '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug'.
&lt;br&gt;&lt;br&gt;clean-current-bin-dir:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[echo] Cleaning the bin/mono/1.0/debug binaries directory.
&lt;br&gt;&amp;nbsp; &amp;nbsp;[delete] Deleting directory '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug'.
&lt;br&gt;&amp;nbsp; &amp;nbsp; [mkdir] Creating directory '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug'.
&lt;br&gt;&lt;br&gt;compile-mono-1.0:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [csc] Compiling 216 files to '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug/log4net.dll'.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [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'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [csc] /usr/lib/mono/1.0/mscorlib.dll (Location of the symbol related to previous error)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [csc] Compilation failed: 1 error(s), 0 warnings
&lt;br&gt;&lt;br&gt;BUILD FAILED - 0 non-fatal error(s), 2 warning(s)
&lt;br&gt;&lt;br&gt;/srv/gump/public/workspace/logging-log4net/log4net.build(769,14):
&lt;br&gt;External Program Failed: /usr/lib/mono/1.0/mcs.exe (return code was 1)
&lt;br&gt;&lt;br&gt;Total time: 9.5 seconds.
&lt;br&gt;&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 16000007122009, vmgump:vmgump-public:16000007122009
&lt;br&gt;Gump E-mail Identifier (unique within run) #2.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Dev-f155.html&quot; embed=&quot;fixTarget[155]&quot; target=&quot;_top&quot; &gt;Log4net - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-logging-log4net-%28in-module-logging-log4net%29-failed-tp26675494p26675494.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26654512</id>
	<title>[GUMP@vmgump]: Project logging-log4net (in module logging-log4net) failed</title>
	<published>2009-12-05T00:33:06Z</published>
	<updated>2009-12-05T00:33:06Z</updated>
	<author>
		<name>Curt Arnold-3</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26654512&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project logging-log4net has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects,
&lt;br&gt;&amp;nbsp;and has been outstanding for 6 runs.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - logging-log4net : &amp;nbsp;Logging framework for .NET.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/gump_work/build_logging-log4net_logging-log4net.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/gump_work/build_logging-log4net_logging-log4net.html&lt;/a&gt;&lt;br&gt;Work Name: build_logging-log4net_logging-log4net (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 10 secs
&lt;br&gt;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 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/logging-log4net]
&lt;br&gt;DEVPATH: 
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;check-doc-dir:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-sdkdoc-dir:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-sdkdoc-debug:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-current-build-config:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-build-debug:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-build-defines:
&lt;br&gt;&lt;br&gt;&lt;br&gt;set-mono-1.0-runtime-configuration:
&lt;br&gt;&lt;br&gt;&amp;nbsp;[property] Target framework changed to &amp;quot;Mono 1.0 Profile&amp;quot;.
&lt;br&gt;&lt;br&gt;check-log4net-basedir:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-current-bin-dir:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; [mkdir] Creating directory '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug'.
&lt;br&gt;&lt;br&gt;clean-current-bin-dir:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[echo] Cleaning the bin/mono/1.0/debug binaries directory.
&lt;br&gt;&amp;nbsp; &amp;nbsp;[delete] Deleting directory '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug'.
&lt;br&gt;&amp;nbsp; &amp;nbsp; [mkdir] Creating directory '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug'.
&lt;br&gt;&lt;br&gt;compile-mono-1.0:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [csc] Compiling 216 files to '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug/log4net.dll'.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [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'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [csc] /usr/lib/mono/1.0/mscorlib.dll (Location of the symbol related to previous error)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [csc] Compilation failed: 1 error(s), 0 warnings
&lt;br&gt;&lt;br&gt;BUILD FAILED - 0 non-fatal error(s), 2 warning(s)
&lt;br&gt;&lt;br&gt;/srv/gump/public/workspace/logging-log4net/log4net.build(769,14):
&lt;br&gt;External Program Failed: /usr/lib/mono/1.0/mcs.exe (return code was 1)
&lt;br&gt;&lt;br&gt;Total time: 7.1 seconds.
&lt;br&gt;&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 07000005122009, vmgump:vmgump-public:07000005122009
&lt;br&gt;Gump E-mail Identifier (unique within run) #2.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Dev-f155.html&quot; embed=&quot;fixTarget[155]&quot; target=&quot;_top&quot; &gt;Log4net - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-logging-log4net-%28in-module-logging-log4net%29-failed-tp26654512p26654512.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26623967</id>
	<title>[GUMP@vmgump]: Project logging-log4net (in module logging-log4net) failed</title>
	<published>2009-12-03T00:30:23Z</published>
	<updated>2009-12-03T00:30:23Z</updated>
	<author>
		<name>Curt Arnold-3</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26623967&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project logging-log4net has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects,
&lt;br&gt;&amp;nbsp;and has been outstanding for 3 runs.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - logging-log4net : &amp;nbsp;Logging framework for .NET.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/gump_work/build_logging-log4net_logging-log4net.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/gump_work/build_logging-log4net_logging-log4net.html&lt;/a&gt;&lt;br&gt;Work Name: build_logging-log4net_logging-log4net (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 20 secs
&lt;br&gt;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 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/logging-log4net]
&lt;br&gt;DEVPATH: 
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;check-doc-dir:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-sdkdoc-dir:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-sdkdoc-debug:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-current-build-config:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-build-debug:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-build-defines:
&lt;br&gt;&lt;br&gt;&lt;br&gt;set-mono-1.0-runtime-configuration:
&lt;br&gt;&lt;br&gt;&amp;nbsp;[property] Target framework changed to &amp;quot;Mono 1.0 Profile&amp;quot;.
&lt;br&gt;&lt;br&gt;check-log4net-basedir:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-current-bin-dir:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; [mkdir] Creating directory '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug'.
&lt;br&gt;&lt;br&gt;clean-current-bin-dir:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[echo] Cleaning the bin/mono/1.0/debug binaries directory.
&lt;br&gt;&amp;nbsp; &amp;nbsp;[delete] Deleting directory '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug'.
&lt;br&gt;&amp;nbsp; &amp;nbsp; [mkdir] Creating directory '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug'.
&lt;br&gt;&lt;br&gt;compile-mono-1.0:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [csc] Compiling 216 files to '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug/log4net.dll'.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [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'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [csc] /usr/lib/mono/1.0/mscorlib.dll (Location of the symbol related to previous error)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [csc] Compilation failed: 1 error(s), 0 warnings
&lt;br&gt;&lt;br&gt;BUILD FAILED - 0 non-fatal error(s), 2 warning(s)
&lt;br&gt;&lt;br&gt;/srv/gump/public/workspace/logging-log4net/log4net.build(769,14):
&lt;br&gt;External Program Failed: /usr/lib/mono/1.0/mcs.exe (return code was 1)
&lt;br&gt;&lt;br&gt;Total time: 7.7 seconds.
&lt;br&gt;&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 09000003122009, vmgump:vmgump-public:09000003122009
&lt;br&gt;Gump E-mail Identifier (unique within run) #2.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Dev-f155.html&quot; embed=&quot;fixTarget[155]&quot; target=&quot;_top&quot; &gt;Log4net - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-logging-log4net-%28in-module-logging-log4net%29-failed-tp26623967p26623967.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26620776</id>
	<title>Re: [jira] Updated: (LOG4NET-64) [PATCH] to RollingFileAppender.cs to add the ability to preserve the log file name extension when rolling the log file.</title>
	<published>2009-12-02T20:12:38Z</published>
	<updated>2009-12-02T20:12:38Z</updated>
	<author>
		<name>Ron Grabowski</name>
	</author>
	<content type="html">Thanks for the patch. I'll get it merged in!
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;----- Original Message ----
&lt;br&gt;From: Eike-Peter Falk (JIRA) &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26620776&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jira@...&lt;/a&gt;&amp;gt;
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26620776&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;log4net-dev@...&lt;/a&gt;
&lt;br&gt;Sent: Wed, December 2, 2009 7:50:21 AM
&lt;br&gt;Subject: [jira] Updated: (LOG4NET-64) [PATCH] to RollingFileAppender.cs to add the ability to preserve the log file name extension when rolling the log file.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[ &lt;a href=&quot;https://issues.apache.org/jira/browse/LOG4NET-64?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/browse/LOG4NET-64?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&lt;/a&gt;&amp;nbsp;]
&lt;br&gt;&lt;br&gt;Eike-Peter Falk updated LOG4NET-64:
&lt;br&gt;-----------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Attachment: log4net-64.patch
&lt;br&gt;&lt;br&gt;This patch should fix this issue.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; [PATCH] to RollingFileAppender.cs to add the ability to preserve the log file name extension when rolling the log file.
&lt;br&gt;&amp;gt; -----------------------------------------------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: LOG4NET-64
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;https://issues.apache.org/jira/browse/LOG4NET-64&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/browse/LOG4NET-64&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: Log4net
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: New Feature
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Components: Appenders
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Affects Versions: 1.2.9
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Joshua Bassett
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assignee: Ron Grabowski
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Fix For: 1.2.11
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Attachments: log4net-64.patch, LOG4NET-64.patch, LOG4NET-64.patch, patch.txt
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Normally, when the log file is rolled the file name extension is not preserved.
&lt;br&gt;&amp;gt; For example, file.log is rolled to file.log.1 or file.log.yyyy-MM-dd.
&lt;br&gt;&amp;gt; However, this may not be desired in all cases and it may be necessary to preserve the log file name extension when the log file is rolled. Most notably, this feature is useful for maintaining file associations under Windows so that all log files can be associated with a particaular text viewer.
&lt;br&gt;&amp;gt; For example, file.log is rolled to file.1.log or file.yyyy-MM-dd.log.
&lt;br&gt;&amp;gt; This patch adds an additional boolean property PreserveLogFileNameExtension to the RollingFileAppender class which is used to toggle this behavior.
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;You can reply to this email to add a comment to the issue online.
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Dev-f155.html&quot; embed=&quot;fixTarget[155]&quot; target=&quot;_top&quot; &gt;Log4net - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28LOG4NET-64%29--PATCH--to-RollingFileAppender.cs-to-add-the-ability-to-preserve-the-log-file-name-extension-when-rolling-the-log-file.-tp2436195p26620776.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26611376</id>
	<title>Using RollingFileAppender with style=Date.</title>
	<published>2009-12-02T08:01:35Z</published>
	<updated>2009-12-02T08:01:35Z</updated>
	<author>
		<name>Dave Gerler</name>
	</author>
	<content type="html">&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:m=&quot;http://schemas.microsoft.com/office/2004/12/omml&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;
&lt;meta http-equiv=Content-Type content=&quot;text/html; charset=us-ascii&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 12 (filtered medium)&quot;&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;

&lt;body lang=EN-US link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;How do I make it only keep a certain number of files when using
the rollingstyle = date? I&amp;#8217;ve looked on the website and have not been
able to find an example of anything talking about it. This is what I have now:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;appender name=&amp;quot;Communications&amp;quot;
type=&amp;quot;log4net.Appender.RollingFileAppender&amp;quot;&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;file
value=&amp;quot;c:/log/register/gis/communications.txt&amp;quot; /&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;appendToFile
value=&amp;quot;true&amp;quot; /&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;lt;maxSizeRollBackups value=&amp;quot;10&amp;quot; /&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-indent:.5in'&gt;&lt;span style='font-size:11.0pt;
font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D'&gt;&amp;lt;rollingStyle
value=&amp;quot;Date&amp;quot; /&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;lt;datePattern value=&amp;quot;yyyyMMdd-HHmm&amp;quot; /&amp;gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;layout
type=&amp;quot;log4net.Layout.PatternLayout&amp;quot;&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&amp;lt;header value=&amp;quot;[Header]&amp;amp;#xD;&amp;amp;#xA;&amp;quot; /&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&amp;lt;footer value=&amp;quot;[Footer]&amp;amp;#xD;&amp;amp;#xA;&amp;quot; /&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&amp;lt;conversionPattern value=&amp;quot;%date [%thread] %-5level %logger
(%file:%line) - %message%newline&amp;quot; /&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/layout&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/appender&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;It doesn&amp;#8217;t delete the files when I get to 10.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Users-f154.html&quot; embed=&quot;fixTarget[154]&quot; target=&quot;_top&quot; &gt;Log4net - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Customized-mail-subject-fo-SmtpAppender-tp26583765p26611376.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26608544</id>
	<title>Re: RE: .NET 4.0 and Log4Net</title>
	<published>2009-12-02T05:04:34Z</published>
	<updated>2009-12-02T05:04:34Z</updated>
	<author>
		<name>Tiernan OToole</name>
	</author>
	<content type="html">&lt;p&gt;I am trying to use the compiled dll from the website in a .net 4.0 app and on build its fails... will play around a bit more and try get screen shots... &lt;/p&gt;
&lt;p&gt;&lt;blockquote type=&quot;cite&quot;&gt;On Dec 2, 2009 12:19 PM, &amp;quot;Roy Chastain&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26608544&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Roy@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&lt;br&gt;Well, actually, if you compile with NET_2_0 defined for use with .Net&lt;br&gt;

2.0, it uses System.Net.Mail.&lt;br&gt;
&lt;br&gt;
However, the ASPNetTraceAppender does reference the System.Web namespace&lt;br&gt;
for access to the HttpContext class.&lt;br&gt;
&lt;br&gt;
In both versions 2.0 and 4.0 of the framework, this class is in&lt;br&gt;
System.Web.dll so there should be no difference from current&lt;br&gt;
development.&lt;br&gt;
&lt;br&gt;
----------------------------------------------------------------------&lt;br&gt;
&lt;font color=&quot;#888888&quot;&gt;Roy Chastain&lt;br&gt;
&lt;/font&gt;&lt;p&gt;&lt;font color=&quot;#500050&quot;&gt;



-----Original Message-----
From: Ron Grabowski [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26608544&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rongrabowski@...&lt;/a&gt;] 
Sent: Tuesday, D...&lt;/font&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/p&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Users-f154.html&quot; embed=&quot;fixTarget[154]&quot; target=&quot;_top&quot; &gt;Log4net - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/.NET-4.0-and-Log4Net-tp26592439p26608544.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26608368</id>
	<title>[jira] Updated: (LOG4NET-64) [PATCH] to RollingFileAppender.cs to add the ability to preserve the log file name extension when rolling the log file.</title>
	<published>2009-12-02T04:50:21Z</published>
	<updated>2009-12-02T04:50:21Z</updated>
	<author>
		<name>JIRA jira@apache.org</name>
	</author>
	<content type="html">&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[ &lt;a href=&quot;https://issues.apache.org/jira/browse/LOG4NET-64?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/browse/LOG4NET-64?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&lt;/a&gt;&amp;nbsp;]
&lt;br&gt;&lt;br&gt;Eike-Peter Falk updated LOG4NET-64:
&lt;br&gt;-----------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Attachment: log4net-64.patch
&lt;br&gt;&lt;br&gt;This patch should fix this issue.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; [PATCH] to RollingFileAppender.cs to add the ability to preserve the log file name extension when rolling the log file.
&lt;br&gt;&amp;gt; -----------------------------------------------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: LOG4NET-64
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;https://issues.apache.org/jira/browse/LOG4NET-64&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/browse/LOG4NET-64&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: Log4net
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: New Feature
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Components: Appenders
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Affects Versions: 1.2.9
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Joshua Bassett
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assignee: Ron Grabowski
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Fix For: 1.2.11
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Attachments: log4net-64.patch, LOG4NET-64.patch, LOG4NET-64.patch, patch.txt
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Normally, when the log file is rolled the file name extension is not preserved.
&lt;br&gt;&amp;gt; For example, file.log is rolled to file.log.1 or file.log.yyyy-MM-dd.
&lt;br&gt;&amp;gt; However, this may not be desired in all cases and it may be necessary to preserve the log file name extension when the log file is rolled. Most notably, this feature is useful for maintaining file associations under Windows so that all log files can be associated with a particaular text viewer.
&lt;br&gt;&amp;gt; For example, file.log is rolled to file.1.log or file.yyyy-MM-dd.log.
&lt;br&gt;&amp;gt; This patch adds an additional boolean property PreserveLogFileNameExtension to the RollingFileAppender class which is used to toggle this behavior.
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;You can reply to this email to add a comment to the issue online.
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Dev-f155.html&quot; embed=&quot;fixTarget[155]&quot; target=&quot;_top&quot; &gt;Log4net - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28LOG4NET-64%29--PATCH--to-RollingFileAppender.cs-to-add-the-ability-to-preserve-the-log-file-name-extension-when-rolling-the-log-file.-tp2436195p26608368.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26608000</id>
	<title>RE: .NET 4.0 and Log4Net</title>
	<published>2009-12-02T04:19:10Z</published>
	<updated>2009-12-02T04:19:10Z</updated>
	<author>
		<name>Roy Chastain</name>
	</author>
	<content type="html">Well, actually, if you compile with NET_2_0 defined for use with .Net
&lt;br&gt;2.0, it uses System.Net.Mail.
&lt;br&gt;&lt;br&gt;However, the ASPNetTraceAppender does reference the System.Web namespace
&lt;br&gt;for access to the HttpContext class.
&lt;br&gt;&lt;br&gt;In both versions 2.0 and 4.0 of the framework, this class is in
&lt;br&gt;System.Web.dll so there should be no difference from current
&lt;br&gt;development.
&lt;br&gt;&lt;br&gt;----------------------------------------------------------------------
&lt;br&gt;Roy Chastain
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Ron Grabowski [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26608000&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rongrabowski@...&lt;/a&gt;] 
&lt;br&gt;Sent: Tuesday, December 01, 2009 21:26
&lt;br&gt;To: Log4NET User
&lt;br&gt;Subject: Re: .NET 4.0 and Log4Net
&lt;br&gt;&lt;br&gt;Well, its a known issue in the sense that its had that dependency for 8+
&lt;br&gt;years: System.Web.Mail
&lt;br&gt;&lt;br&gt;&lt;br&gt;________________________________
&lt;br&gt;&lt;br&gt;From: Tiernan OToole &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26608000&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lsmartman@...&lt;/a&gt;&amp;gt;
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26608000&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;log4net-user@...&lt;/a&gt;
&lt;br&gt;Sent: Tue, December 1, 2009 9:12:55 AM
&lt;br&gt;Subject: .NET 4.0 and Log4Net
&lt;br&gt;&lt;br&gt;&lt;br&gt;Good morning all.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;when trying to use Log4Net (1.2.10) with .NET 4.0, i am getting an error
&lt;br&gt;about Log4Net needing System.Web... is this a known issue?
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Tiernan O'Toole
&lt;br&gt;blog.lotas-smartman.net
&lt;br&gt;www.tiernanotoolephotography.com
&lt;br&gt;www.the-hairy-one.com
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Users-f154.html&quot; embed=&quot;fixTarget[154]&quot; target=&quot;_top&quot; &gt;Log4net - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/.NET-4.0-and-Log4Net-tp26592439p26608000.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26607200</id>
	<title>[jira] Commented: (LOG4NET-234) RollingFileAppender generates incorrect file name</title>
	<published>2009-12-02T03:10:21Z</published>
	<updated>2009-12-02T03:10:21Z</updated>
	<author>
		<name>JIRA jira@apache.org</name>
	</author>
	<content type="html">&lt;br&gt;&amp;nbsp; &amp;nbsp; [ &lt;a href=&quot;https://issues.apache.org/jira/browse/LOG4NET-234?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12784766#action_12784766&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/browse/LOG4NET-234?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=12784766#action_12784766&lt;/a&gt;&amp;nbsp;] 
&lt;br&gt;&lt;br&gt;Alex Vilela commented on LOG4NET-234:
&lt;br&gt;-------------------------------------
&lt;br&gt;&lt;br&gt;I experience the same behavior. I have an IIS web application and the log files become multiplied:
&lt;br&gt;&lt;br&gt;datalog.2009.11.04.log
&lt;br&gt;datalog.2009.11.04.log.2009.11.04.log
&lt;br&gt;datalog.2009.11.04.log.2009.11.04.log.2009.11.04.log
&lt;br&gt;&lt;br&gt;Unlikely LOG4NET-175 everything keeps working fine and never crashes. 
&lt;br&gt;The file isn't really rolled out, I mean, one file is not a sequence of the previous one. 
&lt;br&gt;Some logs happen on the first file, some on the second, then on the third, than log4net uses the first again and keep switching between the log files, therefore reading the logs is really hard.
&lt;br&gt;Please see attached log files.
&lt;br&gt;&lt;br&gt;This is my configuration for the appender:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;appender name=&amp;quot;dataLog&amp;quot; type=&amp;quot;log4net.Appender.RollingFileAppender,log4net&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;param name=&amp;quot;File&amp;quot; value=&amp;quot;logs/datalog&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;param name=&amp;quot;AppendToFile&amp;quot; value=&amp;quot;true&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;param name=&amp;quot;RollingStyle&amp;quot; value=&amp;quot;Date&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;param name=&amp;quot;DatePattern&amp;quot; value=&amp;quot;.yyyy.MM.dd.'log'&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;param name=&amp;quot;StaticLogFileName&amp;quot; value=&amp;quot;false&amp;quot;/&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;layout type=&amp;quot;log4net.Layout.PatternLayout,log4net&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;param name=&amp;quot;ConversionPattern&amp;quot; value=&amp;quot;%d [%t] %-5p %c.%M - %m%n&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/layout&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/appender&amp;gt;
&lt;br&gt;&lt;br&gt;I'm using log4net 1.2.10.0
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; RollingFileAppender generates incorrect file name
&lt;br&gt;&amp;gt; -------------------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: LOG4NET-234
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;https://issues.apache.org/jira/browse/LOG4NET-234&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/browse/LOG4NET-234&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: Log4net
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: Bug
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Components: Appenders
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Affects Versions: 1.2.10
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Environment: Windows XP, Windows 2003
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Miroslav Vanicky
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Attachments: logs.zip
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; Original Estimate: 24h
&lt;br&gt;&amp;gt; &amp;nbsp;Remaining Estimate: 24h
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have Appender defined as follow...
&lt;br&gt;&amp;gt; &amp;lt;appender name=&amp;quot;RollingFileAppender&amp;quot; type=&amp;quot;log4net.Appender.RollingFileAppender&amp;quot; &amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;file value=&amp;quot;Logs\Log&amp;quot; /&amp;gt; &amp;lt;!-- Základní název souboru --&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;appendtofile value=&amp;quot;true&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;rollingstyle value=&amp;quot;Date&amp;quot; /&amp;gt; &amp;lt;!-- Soubory budou vznikat na základě datumu/času logu --&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;datepattern value=&amp;quot;_yyyy-MM-dd.\tx\t&amp;quot;/&amp;gt; &amp;lt;!-- Maska pro název souboru (to .\tx\t tam musí být, aby byla přípona .txt)--&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;StaticLogFileName value=&amp;quot;false&amp;quot; /&amp;gt; &amp;lt;!-- Už první vzniklý soubor bude mít název obsahující datum. Jinak by logoval stále do jednoho stejného souboru a ten by v případě potřeby (změna datumu) přejmenoval --&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;!-- Co a jak bude formátováno ve výstupu.
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Seznam všech dostupných %proměnných je na: &lt;a href=&quot;http://logging.apache.org/log4net/release/sdk/log4net.Layout.PatternLayout.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://logging.apache.org/log4net/release/sdk/log4net.Layout.PatternLayout.html&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Na stejné stránce dole je popsáno i co znamená to -5level apod. --&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;layout type=&amp;quot;log4net.Layout.PatternLayout&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;conversionpattern value=&amp;quot;%date [%-5level] - %message%newline&amp;quot;&amp;gt;&amp;lt;/conversionpattern&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;/layout&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;lt;/appender&amp;gt;
&lt;br&gt;&amp;gt; This Appender should generate file names like &amp;quot;Log_2009-10-15.txt&amp;quot;, mostly it works fine, but in some unknown situations it generates file named &amp;quot;Log_2009-10-15.txt_2009-10-15.txt&amp;quot;. It seems to me that this happens when there were no log-files and the incorrectly named file was the first log-file generated.
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;You can reply to this email to add a comment to the issue online.
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Dev-f155.html&quot; embed=&quot;fixTarget[155]&quot; target=&quot;_top&quot; &gt;Log4net - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28LOG4NET-234%29-RollingFileAppender-generates-incorrect-file-name-tp26098844p26607200.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26607201</id>
	<title>[jira] Updated: (LOG4NET-234) RollingFileAppender generates incorrect file name</title>
	<published>2009-12-02T03:10:21Z</published>
	<updated>2009-12-02T03:10:21Z</updated>
	<author>
		<name>JIRA jira@apache.org</name>
	</author>
	<content type="html">&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[ &lt;a href=&quot;https://issues.apache.org/jira/browse/LOG4NET-234?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/browse/LOG4NET-234?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&lt;/a&gt;&amp;nbsp;]
&lt;br&gt;&lt;br&gt;Alex Vilela updated LOG4NET-234:
&lt;br&gt;--------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Attachment: logs.zip
&lt;br&gt;&lt;br&gt;The log files I mentioned on the previous post.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; RollingFileAppender generates incorrect file name
&lt;br&gt;&amp;gt; -------------------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: LOG4NET-234
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;https://issues.apache.org/jira/browse/LOG4NET-234&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/browse/LOG4NET-234&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: Log4net
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: Bug
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Components: Appenders
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Affects Versions: 1.2.10
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Environment: Windows XP, Windows 2003
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Miroslav Vanicky
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Attachments: logs.zip
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; Original Estimate: 24h
&lt;br&gt;&amp;gt; &amp;nbsp;Remaining Estimate: 24h
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have Appender defined as follow...
&lt;br&gt;&amp;gt; &amp;lt;appender name=&amp;quot;RollingFileAppender&amp;quot; type=&amp;quot;log4net.Appender.RollingFileAppender&amp;quot; &amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;file value=&amp;quot;Logs\Log&amp;quot; /&amp;gt; &amp;lt;!-- Základní název souboru --&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;appendtofile value=&amp;quot;true&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;rollingstyle value=&amp;quot;Date&amp;quot; /&amp;gt; &amp;lt;!-- Soubory budou vznikat na základě datumu/času logu --&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;datepattern value=&amp;quot;_yyyy-MM-dd.\tx\t&amp;quot;/&amp;gt; &amp;lt;!-- Maska pro název souboru (to .\tx\t tam musí být, aby byla přípona .txt)--&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;StaticLogFileName value=&amp;quot;false&amp;quot; /&amp;gt; &amp;lt;!-- Už první vzniklý soubor bude mít název obsahující datum. Jinak by logoval stále do jednoho stejného souboru a ten by v případě potřeby (změna datumu) přejmenoval --&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;!-- Co a jak bude formátováno ve výstupu.
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Seznam všech dostupných %proměnných je na: &lt;a href=&quot;http://logging.apache.org/log4net/release/sdk/log4net.Layout.PatternLayout.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://logging.apache.org/log4net/release/sdk/log4net.Layout.PatternLayout.html&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Na stejné stránce dole je popsáno i co znamená to -5level apod. --&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;layout type=&amp;quot;log4net.Layout.PatternLayout&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;conversionpattern value=&amp;quot;%date [%-5level] - %message%newline&amp;quot;&amp;gt;&amp;lt;/conversionpattern&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;/layout&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;lt;/appender&amp;gt;
&lt;br&gt;&amp;gt; This Appender should generate file names like &amp;quot;Log_2009-10-15.txt&amp;quot;, mostly it works fine, but in some unknown situations it generates file named &amp;quot;Log_2009-10-15.txt_2009-10-15.txt&amp;quot;. It seems to me that this happens when there were no log-files and the incorrectly named file was the first log-file generated.
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;You can reply to this email to add a comment to the issue online.
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Dev-f155.html&quot; embed=&quot;fixTarget[155]&quot; target=&quot;_top&quot; &gt;Log4net - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28LOG4NET-234%29-RollingFileAppender-generates-incorrect-file-name-tp26098844p26607201.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26602558</id>
	<title>Re: .NET 4.0 and Log4Net</title>
	<published>2009-12-01T18:25:51Z</published>
	<updated>2009-12-01T18:25:51Z</updated>
	<author>
		<name>Ron Grabowski</name>
	</author>
	<content type="html">&lt;html&gt;&lt;head&gt;&lt;/head&gt;&lt;body&gt;&lt;div style=&quot;font-family:times new roman,new york,times,serif;font-size:12pt&quot;&gt;&lt;div style=&quot;font-family: times new roman,new york,times,serif; font-size: 12pt;&quot;&gt;Well, its a known issue in the sense that its had that dependency for 8+ years: System.Web.Mail&lt;br&gt;&lt;br&gt;&lt;div style=&quot;font-family: times new roman,new york,times,serif; font-size: 12pt;&quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot;&gt;&lt;hr size=&quot;1&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;From:&lt;/span&gt;&lt;/b&gt; Tiernan OToole &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26602558&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lsmartman@...&lt;/a&gt;&amp;gt;&lt;br&gt;&lt;b&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;To:&lt;/span&gt;&lt;/b&gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26602558&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;log4net-user@...&lt;/a&gt;&lt;br&gt;&lt;b&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Sent:&lt;/span&gt;&lt;/b&gt; Tue, December 1, 2009 9:12:55 AM&lt;br&gt;&lt;b&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Subject:&lt;/span&gt;&lt;/b&gt; .NET 4.0 and Log4Net&lt;br&gt;&lt;/font&gt;&lt;br&gt;&lt;meta http-equiv=&quot;x-dns-prefetch-control&quot; content=&quot;off&quot;&gt;&lt;div&gt;Good morning all.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;when trying to use Log4Net (1.2.10) with .NET 4.0, i am getting an error about Log4Net needing System.Web... is this a known issue?&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;Tiernan O'Toole&lt;br&gt;&lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://blog.lotas-smartman.net&quot;&gt;blog.lotas-smartman.net&lt;/a&gt;&lt;br&gt;
&lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://www.tiernanotoolephotography.com&quot;&gt;www.tiernanotoolephotography.com&lt;/a&gt;&lt;br&gt;&lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://www.the-hairy-one.com&quot;&gt;www.the-hairy-one.com&lt;/a&gt;&lt;br&gt;&lt;/div&gt;
&lt;meta http-equiv=&quot;x-dns-prefetch-control&quot; content=&quot;on&quot;&gt;&lt;/div&gt;&lt;/div&gt;
&lt;!-- cg22.c1.mail.mud.yahoo.com compressed/chunked Mon Nov 30 17:20:05 PST 2009 --&gt;
&lt;/div&gt;&lt;/body&gt;&lt;/html&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Users-f154.html&quot; embed=&quot;fixTarget[154]&quot; target=&quot;_top&quot; &gt;Log4net - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/.NET-4.0-and-Log4Net-tp26592439p26602558.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26601701</id>
	<title>[GUMP@vmgump]: Project logging-log4net (in module logging-log4net) failed</title>
	<published>2009-12-01T16:33:38Z</published>
	<updated>2009-12-01T16:33:38Z</updated>
	<author>
		<name>Curt Arnold-3</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26601701&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project logging-log4net has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - logging-log4net : &amp;nbsp;Logging framework for .NET.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/gump_work/build_logging-log4net_logging-log4net.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/gump_work/build_logging-log4net_logging-log4net.html&lt;/a&gt;&lt;br&gt;Work Name: build_logging-log4net_logging-log4net (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 30 secs
&lt;br&gt;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 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/logging-log4net]
&lt;br&gt;DEVPATH: 
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;check-doc-dir:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-sdkdoc-dir:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-sdkdoc-debug:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-current-build-config:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-build-debug:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-build-defines:
&lt;br&gt;&lt;br&gt;&lt;br&gt;set-mono-1.0-runtime-configuration:
&lt;br&gt;&lt;br&gt;&amp;nbsp;[property] Target framework changed to &amp;quot;Mono 1.0 Profile&amp;quot;.
&lt;br&gt;&lt;br&gt;check-log4net-basedir:
&lt;br&gt;&lt;br&gt;&lt;br&gt;check-current-bin-dir:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; [mkdir] Creating directory '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug'.
&lt;br&gt;&lt;br&gt;clean-current-bin-dir:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[echo] Cleaning the bin/mono/1.0/debug binaries directory.
&lt;br&gt;&amp;nbsp; &amp;nbsp;[delete] Deleting directory '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug'.
&lt;br&gt;&amp;nbsp; &amp;nbsp; [mkdir] Creating directory '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug'.
&lt;br&gt;&lt;br&gt;compile-mono-1.0:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [csc] Compiling 216 files to '/srv/gump/public/workspace/logging-log4net/bin/mono/1.0/debug/log4net.dll'.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [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'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [csc] /usr/lib/mono/1.0/mscorlib.dll (Location of the symbol related to previous error)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [csc] Compilation failed: 1 error(s), 0 warnings
&lt;br&gt;&lt;br&gt;BUILD FAILED - 0 non-fatal error(s), 2 warning(s)
&lt;br&gt;&lt;br&gt;/srv/gump/public/workspace/logging-log4net/log4net.build(769,14):
&lt;br&gt;External Program Failed: /usr/lib/mono/1.0/mcs.exe (return code was 1)
&lt;br&gt;&lt;br&gt;Total time: 9.7 seconds.
&lt;br&gt;&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/logging-log4net/logging-log4net/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 11001601122009, vmgump:vmgump-public:11001601122009
&lt;br&gt;Gump E-mail Identifier (unique within run) #1.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Log4net---Dev-f155.html&quot; embed=&quot;fixTarget[155]&quot; target=&quot;_top&quot; &gt;Log4net - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-logging-log4net-%28in-module-logging-log4net%29-failed-tp26601701p26601701.html" />
</entry>

</feed>
