basic question on building log4net

2004-10-21 Thread Steve Burkett
Hello, I have a basic question on building log4net. I'm running Win2k, SP2, .Net 1.1, VS .Net 2003. I build log4net via: nant compile-net-1.1 /f:log4net.build The stdout says it's doing .Net 1.1 but log4net.dll is built to (1.0 directory): log4net\log4net-1.2.0-beta8\bin\net\1.

RE: Conditional appenders!!

2004-10-21 Thread Nicko Cadell
The Evaluator is only supported by appenders that extend the BufferingAppenderSkeleton. The Evaluator is not used to filter log events, it is used to selectively override the buffering of the appender and deliver the current buffer immediately. Each appender does have a Threshold that sets the low

RE: FileAppender Thread Safe!!!

2004-10-21 Thread Nicko Cadell
http://logging.apache.org/log4net/release/manual/faq.html#HC-30836417 Nicko > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: 21 October 2004 13:50 > To: log4net-user@logging.apache.org > Subject: FileAppender Thread Safe!!! > > In case of writing to file

RE: Rolling file appender :

2004-10-21 Thread Nicko Cadell
This is not possible with the current RollingFileAppender. Nicko > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: 21 October 2004 13:43 > To: log4net-user@logging.apache.org > Subject: Rolling file appender : > > In case of Rolling file appender : > I w

RE: Query Please?

2004-10-21 Thread Nicko Cadell
The DOMConfigurator can watch a config file. You need to call the ConfigureAndWatch method or specify Watch=true to the DOMConfiguratorAttribute. Nicko > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: 21 October 2004 13:39 > To: log4net-user@logging.apach

RE: How can I log to database through firewall?

2004-10-21 Thread Nicko Cadell
Jeff, An MsmqAppender should be possible, but I haven't seen one either. Nicko > -Original Message- > From: Jeffrey Schoolcraft [mailto:[EMAIL PROTECTED] > Sent: 21 October 2004 12:24 > To: Log4NET User > Subject: Re: How can I log to database through firewall? > > How about an MSMQAp

RE: Performance of buffered vs. non-buffered logging

2004-10-21 Thread Nicko Cadell
Simon, The BufferingAppenderSkeleton handles the buffering of events for the ADONetAppender. The LoggingEvent object refers to a lot of information that is specific to the call state and thread at the point where the event is logged. For example: the thread name, MDC, NDC, thread principal, caller

RE: Problems upgrading to version 1.2 from 1.1

2004-10-21 Thread Nicko Cadell
Andrew, The Hierarchy.Root.Level is the level for the root logger. This level is inherited by all child loggers in the hierarchy unless they override it. For details see the Level Inheritance section of the manual at: http://logging.apache.org/log4net/release/manual/introduction.html#HC-52 37022

RE: TextBoxAppender

2004-10-21 Thread John Cole
Neils, Thanks, I think I had a typo in my log4net.config file :-) I modified your TextBoxAppender into a RichTextBoxAppender. Here is the new class. -- cut here - using System; using System.Collections; using System.Windows.Forms; using S

RE: Conditional appenders!!

2004-10-21 Thread amitma
Is evaluator possible in case of other appenders??? Like here -Original Message- From:

RE: Conditional appenders!!

2004-10-21 Thread amitma
Thanks !! For the reply I am in the eval phase Might further require ur help Thanks again -Original Message- From: Jeffrey Schoolcraft [mailto:[EMAIL PROTECTED] Sent: Thursday, October 21, 2004 6:45 PM To: Log4NET User Subject: Re: Conditional appenders!! Sure, check out filters: ht

Re: Conditional appenders!!

2004-10-21 Thread Jeffrey Schoolcraft
Sure, check out filters: http://logging.apache.org/log4net/release/manual/configuration.html#HC-3916302 Jeff On Thu, 21 Oct 2004 18:17:58 +0530, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > Is it possible that for this level say fatal I want only email appender ro > be sent > For level

FileAppender Thread Safe!!!

2004-10-21 Thread amitma
Title: FileAppender Thread Safe!!! In case of writing to file ,when two clients write at the same time , Client1 log is it handled ? Thanks and Regards, Amit .M. Agarwal MASTEK "Making a valuable difference" Mastek in NASSCOM's 'India Top 20' Software Service Exporters List. In the US

Conditional appenders!!

2004-10-21 Thread amitma
Title: Conditional appenders!! Is it possible that for this level say fatal I want only email appender ro be sent For level error I want to write only to file….. That is conditional selection of appenders. Thanks and Regards, Amit .M. Agarwal MASTEK "Making a valuable difference" Mas

Rolling file appender :

2004-10-21 Thread amitma
Title: Rolling file appender : In case of Rolling file appender : I want to customize the name of the file say from log.txt.1 which is default to say AllAppMessages[1].log.Here [1] should be dynamic next should be [2],[3] ….. Thanks and Regards, Amit .M. Agarwal MASTEK "Making a valua

Query Please?

2004-10-21 Thread amitma
Title: Query Please? I want to reload the config settings automatically,as and when it changes……without app restart!! Thanks and Regards, Amit .M. Agarwal MASTEK "Making a valuable difference" Mastek in NASSCOM's 'India Top 20' Software Service Exporters List. In the US, we're call

rhfg

2004-10-21 Thread amitma
Title: rhfg MASTEK "Making a valuable difference" Mastek in NASSCOM's 'India Top 20' Software Service Exporters List. In the US, we're called MAJESCO ~~ Opinions expressed in this e

Re: How can I log to database through firewall?

2004-10-21 Thread Jeffrey Schoolcraft
How about an MSMQAppender? I'm not sure of the existance of such a thing but that should be configurable through a firewall (maybe, using HTTP transport) and you wouldn't have to worry (too much) about latency issues. Jeff On Wed, 20 Oct 2004 20:21:24 +0100, Nicko Cadell <[EMAIL PROTECTED]> wro