Re: creating a logging hierarchy

2004-01-16 Thread Kevin Klinemeier
Just name your loggers with a dot notation, and they will be organized into hieararchies. Each point will then be a 'placeholder' entry in tree, unless you configure a logger with that name. One recommended usage is to log to fully-qualified-classnames. Here's an pseudocode example: Myclass.doS

RE: creating a logging hierarchy

2004-01-16 Thread Shapira, Yoav
Howdy, Read the short manual on the log4j site. Yoav Shapira Millennium ChemInformatics >-Original Message- >From: Joe Collins [mailto:[EMAIL PROTECTED] >Sent: Friday, January 16, 2004 1:12 PM >To: [EMAIL PROTECTED] >Subject: creating a logging hierarchy > >Hi! >

creating a logging hierarchy

2004-01-16 Thread Joe Collins
Hi! Where do I create the hierarchy in log4j i.e. must I have a hierarchy of class files or can I simply create loggers in the config.xml and if so how do I create this hierarchy within the config.xml (i.e. syntax for detailing logger x is a parent of logger Y). If loggers are created in the con