RE: eg. for using TraceAppender

2004-04-19 Thread Nicko Cadell
Paul, An example of how to configure the TraceAppender can be found here: http://logging.apache.org/log4net/release/config-examples.html#HC-15855697 The appender is used just like any other. See the ConsoleApp example in the download (examples\net\1.0\Tutorials\ConsoleApp) for details on how to u

RE: High CPU Utilization..

2004-04-19 Thread Nicko Cadell
What is your log4net configuration. What is your CPU utilization if your disable log4net logging? http://logging.apache.org/log4net/release/manual/faq.html#HC-29616570 What output do you get if you enable internal log4net debug? http://logging.apache.org/log4net/release/manual/faq.html#internalDeb

RE: Log4Net in COM+

2004-04-19 Thread Nicko Cadell
The NDC and MDC attach context to the current thread. If you are remoting your calls e.g: MyLogClient --[COM+ call]--> MyLogServer -> log4net Then I suspect that the remoted requests are served out of the ThreadPool. Therefore any thread could be used to process the MyLogServer.LogInfo(msg1) ca

RE: problem with RemotingAppender Calls

2004-04-19 Thread Nicko Cadell
The current RemotingAppender does not deliver the events asynchronously. It will buffer the events but once the buffer is full it will send them synchronously. The RemotingAppender in CVS will send the events asynchronously using a ThreadPool worker request. If you need this functionality now you

RE: appenders for remote log viewing

2004-04-19 Thread Nicko Cadell
You can actually configure the UdpAppender to talk to the log4j Chainsaw2 (from log4j CVS). There isn't a SocketAppender in the current distribution but is should be straightforward to implement one. There is a project on sourceforge to provide a UDP client http://sourceforge.net/projects/netlogcl

RE: RemotingAppender does not fail gracefully

2004-04-19 Thread Nicko Cadell
Absolutely. This is fixed in the CVS version. Cheers, Nicko > -Original Message- > From: Kevin Williams [mailto:[EMAIL PROTECTED] > Sent: 15 March 2004 19:14 > To: log4net-user@logging.apache.org > Subject: RemotingAppender does not fail gracefully > > This may just be my opinion, but

RE: ADONetAppender problems

2004-04-19 Thread Nicko Cadell
Adam, The PatternLayout("$X{UserID}") should be %X{FileID} and %X{UserID} However I don't know why the sql client is not liking the SQL it is trying to build. What are the arguments, types and sizes for the InsertAuditEntry stored procedure? Nicko > -Original Message- > From: Adam Pata

RE: SmtpPickupDirAppender (Untriggered emails)

2004-04-19 Thread Nicko Cadell
The configuration for the SmtpPickupDirAppender is a little complicated (as is the configuration for any BufferedAppender). This is the configuration that you have specified. Let me try to explain the effect of this configuration: The BufferSize of 512 means that the appender should keep

RE: Dynamic config: Changing log level of non-root logger

2004-04-19 Thread Nicko Cadell
Chad, Log4net should be picking up the changes to the logger levels when the configuration file is reloaded. Can you reproduce this issue with log4net internal logging enabled? http://logging.apache.org/log4net/release/manual/faq.html#internalDebug And post the output here. Cheers, Nicko > ---

RE: configure different logfiles for different namespaces

2004-04-19 Thread Nicko Cadell
Marco, You can do this using the DOMConfigurator by defining multiple file appenders and then hooking them up to different loggers. For example: ... ... Nicko > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: 05 April 2004 1

RE:eg. for using TraceAppender

2004-04-19 Thread Paul Rayer
Any sample code to implement TraceAppender in the application? How to use the System.Diagnostics.TraceListener in the application? Paul -Original Message- From: Nicko Cadell [mailto:[EMAIL PROTECTED] Sent: Monday, April 19, 2004 6:30 PM To: 'Log4NET User' Subject: RE: mailing list user pr

RE: mailing list user preferences page for logging.apache.org?

2004-04-19 Thread Nicko Cadell
Clayton, Unfortunately I don't think that there is a user configuration tool for the apache mailing lists, if there is I haven't found it yet ;) To switch from full to digest you will have to unsubscribe from the full list and then subscribe to the digest. As far as I can tell these are treated l

RE: Urgent EventLogAppender Question

2004-04-19 Thread Nicko Cadell
Pravin, > I am trying to set the event ID in the event log using > EventLogAppender but with no success. I am using > log4net-1.2.0-beta8. Can someone please provide some > directions/sample code on how to achieve this ? To pass the event id to the EventLogAppender you need to set a property o

RE: Trying to Understand A Couple Of Options

2004-04-19 Thread Nicko Cadell
David, > -Original Message- > From: David Elliott [mailto:[EMAIL PROTECTED] > Sent: 06 April 2004 21:43 > > Difference between BasicConfigurator Class and > DOMConfigurator Class. As best as I understand, Basic ouputs > to the console and doesn't have an XML file and DOM can be > an