Russell Nile/PBS/Pru is out of the office.

2006-03-05 Thread russell . nile
I will be out of the office starting 03/04/2006 and will not return until 12/31/2006. As of 3/4/2006 I am no longer employed here at Prudential. Please contact Nehal Narine at x8274 for questions. - To unsubscribe, e-mail:

Re: Logging to separate files with different levels

2006-03-03 Thread russell . nile
Adrian, I did not study this problem much, but if you include the two appenders in the log definition it should go to both places Russell J. Nile A. Caraiman

Re: Logging to 2 places for different levels

2006-02-24 Thread russell . nile
t; logging (those not captured by an explicit log name) to the regular STDOUT and STDERR. Naturally you can change the appender to be whatever you need, but the example should be useful. Russell J. Nile

How do I eliminate the empty files?

2006-02-24 Thread russell . nile
Folks, I use a common Log4j.xml for many VM's and some of the appenders are not appropriate for all instances. As a result I get a lot of useless empty files. How can I avoid that without specifying many different configuration XML's? Russe

Re: Log4j performance considerations

2005-10-13 Thread Russell
firas mualla yahoo.com> writes: > > I have a large J2EE web application . From > performance(speed & memory space) point of view > what is the best scenario to use ? > 1)Use one logger for each class ( this is a common > practice but > doon't you think that it is heap-consu

RE: logging not working

2005-03-23 Thread Russell Reeves
The solution was to make sure there is a logger (and related appender) in the log4j.properties file that matches the name in Logger.getLogger("some name") -Original Message- From: Jacob Kjome [mailto:[EMAIL PROTECTED] Sent: Monday, March 21, 2005 12:08 AM To: Log4J Users List Subject: RE:

RE: logging not working

2005-03-17 Thread Russell Reeves
Hi Todd, When I run the .bat file that uses the api I get this from log4j: --- log4j:WARN No appenders could be found for logger (bf.cbm.util.io.Loader). log4j:WARN Please initialize the log4j system properly. --- This seems unrelated since it's not bf.tools.extractor.maps.EZReadMap

logging not working

2005-03-17 Thread Russell Reeves
Hi, I've inherited the logging responsibilities for a large API and the existing log4j calls are not working. Here's the init: private static transient Logger logger = Logger.getLogger(EZReadMap.class.getName()); EZReadMap is in: package bf.tool.extractor.maps; So, I expect the name of the lo

RE: Custom Filter Question

2004-01-12 Thread Pitre, Russell
"Why not just add org.jboss=WARN" Where do I put this in the config file? Here's the console appender that I have Russ... -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Monday, January 12, 2004 9:

RE: Custom Filter Question

2004-01-12 Thread Pitre, Russell
The parameter could be a comma-delimited string, which you could parse with a StringTokenizer very easily. But why are you doing this? Yoav Shapira Millennium ChemInformatics >-Original Message- >From: Pitre, Russell [mailto:[EMAIL PROTECTED] >Sent: Monday, January 12, 2004 9:33

Custom Filter Question

2004-01-12 Thread Pitre, Russell
Hello all- I'm coding a simple filter that allows certain logger names to "pass through." The filter works like this. The filter checks the logger name by calling getLoggeName() method of the LoggingEvent class. The parameter you supply such as "com.x.y" will check to see if the logger name

RE: Exclude a class from a particular appender.....

2004-01-06 Thread Pitre, Russell
particular appender. I assume that your Root logger is set to use the CONSOLE appender. That being the case, you can set the 'additive' parameter of your com.shawmut.portal.scheduler logger to false. This way, any messages logged to this logger will NOT be sent to it's parent logg

Exclude a class from a particular appender.....

2004-01-06 Thread Pitre, Russell
Hello All- I'm using Jboss 3.2 and I'm trying to figure out how to exclude a certain class from the console appender. I have two appender's; a console appender for ALL my classes and another appender for a specific package of classes. This package provides scheduling capabilities from my app