RE: Multiple threads that log events to the same file concurrently

2006-10-23 Thread Cohen Oren \(ICS\)
Thanks Curt ! Regarding item 3 (below) : I meant that I will not use append for adding a Logging Event to the thread's queue, but rather a regular add() command. Each thread will put its events on its own logging queue by using add() method (like adding a regular object to a linked list). The

configuration file in Eclipse

2006-10-23 Thread Ben Lajeunesse
Does anyone know how to reference a relative path configuration file in an Eclipse project? It seems that relative paths do not work (from the root of the project), only absolute paths...and I need this project to be deployable reguardless of installation path (I need relative path).

removing/resetting Logger

2006-10-23 Thread Stefano Nichele
Hi All, I would like to know if it's possible to remove programmatically a logger from a repository. This is my use case: I have a configuration class that configures my loggers with my appenders and so on; this plays like a PropertyConfigurator reading a file like: X.level=ALL

RE: configuration file in Eclipse

2006-10-23 Thread Bender Heri
I assume this is a classpath issue. How do you use your path reference? How do you load the property file? Heri -Original Message- From: Ben Lajeunesse [mailto:[EMAIL PROTECTED] Sent: Monday, October 23, 2006 4:56 PM To: log4j-user@logging.apache.org Subject: [SPAM (Bayesain

Re: Multiple threads that log events to the same file concurrently

2006-10-23 Thread Curt Arnold
On Oct 22, 2006, at 4:49 AM, Cohen Oren (ICS) wrote: Thanks Curt ! Regarding item 3 (below) : I meant that I will not use append for adding a Logging Event to the thread's queue, but rather a regular add() command. Each thread will put its events on its own logging queue by using add()