Thanks, will do.Nicko Cadell <[EMAIL PROTECTED]> wrote:
Al,Sounds like a great idea. Why don't you subscribe to the dev list:http://logging.apache.org/log4net/contributing.htmlAnd post your patch there.Cheers,Nicko> -Original Message-> From: Alisdair Little [mailto:[EMAIL PROTECTED] > Sent:
Kevin,
To get the events out of the MemoryAppender you need to lookup the
actual instance of the appender being written to.
The reason that the example suggests creating and configuring the
MemoryAppender programmatically is because you would then have a
reference to the right MemoryAppender. If y
Henrik,
You can create a new Level using the Level(int,string) constructor. As
long as the level is registered with the LoggerRepository it should be
usable, however you do need to register it before you load the
configuration file otherwise it will not be defined. You can create a
new level progr
Al,
Sounds like a great idea. Why don't you subscribe to the dev list:
http://logging.apache.org/log4net/contributing.html
And post your patch there.
Cheers,
Nicko
> -Original Message-
> From: Alisdair Little [mailto:[EMAIL PROTECTED]
> Sent: 06 August 2004 22:51
> To: log4net-user@l
> -Original Message-
> From: hf cheng [mailto:[EMAIL PROTECTED]
> Sent: 04 August 2004 17:27
> To: Log4NET User
> Subject: using log4net in an addin application for vs2003
>
> I am trying to use log4net in an addin application for
> vs2003. Where should I put the configurations for log4
If your programme can write to the local file system but not to a mapped
drive then it sounds like you are having permissions related issues.
Probably the best bet is to enable internal logging which will show you
any errors.
http://logging.apache.org/log4net/release/manual/faq.html#internalDebug
Hi,
I’m trying to enable a MemoryAppender and access the
logged information from within code to be displayed in a form. Ideally
I’d like the MemoryAppender to be configured in the config file. I
already have a working config file which logs to a file and the debugger, and I
added the