RE: downloading Chainsaw

2007-08-31 Thread Scott Deboy
At the moment, Chainsaw is available at http://logging.apache.org/chainsaw/dependencies.html, but should be available at the normal location soon. Scott Deboy -Original Message- From: [EMAIL PROTECTED] on behalf of Dave Latham Sent: Fri 8/31/2007 9:33 AM To: log4j-user@logging.apache.

Re: downloading Chainsaw

2007-08-31 Thread Curt Arnold
On Aug 31, 2007, at 11:33 AM, Dave Latham wrote: I'd like to download and try out Chainsaw with VFS, but it seems that most of the chainsaw links (as found here: http://logging.apache.org/log4j/docs/chainsaw.html ), including the standalone Chainsaw and the VFS adapter links, are broken. Can

downloading Chainsaw

2007-08-31 Thread Dave Latham
I'd like to download and try out Chainsaw with VFS, but it seems that most of the chainsaw links (as found here: http://logging.apache.org/log4j/docs/chainsaw.html ), including the standalone Chainsaw and the VFS adapter links, are broken. Can anyone point me in the right direction to download cha

RE: Pretty Layout of logging by class & method

2007-08-31 Thread Faine, Mark R. (MSFC-NNM04AA02C)[SAIC]
Thanks for the suggestion. I may attempt this. The application is simple and yes I have considered some of the concerns you have laid out but I believe the utility of this would outweigh the possible problems I could have with it. I may even gain a little more in-depth knowledge of log4j in the p

Re: Pretty Layout of logging by class & method

2007-08-31 Thread Curt Arnold
On Aug 31, 2007, at 10:13 AM, Faine, Mark R. (MSFC-NNM04AA02C)[SAIC] wrote: I'd like for Log4J to print the log messages with some sort of indentation, preferably by Class and Method Something like: Start Class1 Inside Main method... Calling Sub method... Inside Sub method...

RE: Pretty Layout of logging by class & method

2007-08-31 Thread Faine, Mark R. (MSFC-NNM04AA02C)[SAIC]
The question really just goes to layout though I suppose logger.log will be called in various locations in nearly every method but also specifically at the start and end of each method. My first thought was a layout class that indented logger.log calls within methods but there is the question of h

Re: Pretty Layout of logging by class & method

2007-08-31 Thread Matthew Kemp
Are you saying that you want one logger.log() call to print the entire stack trace? Or do you want logger.log() calls exiting and entering each method? On 8/31/07, Faine, Mark R. (MSFC-NNM04AA02C)[SAIC] <[EMAIL PROTECTED]> wrote: > > > I'd like for Log4J to print the log messages with some sort of

Re: Pretty Layout of logging by class & method

2007-08-31 Thread James A. N. Stauffer
You might be able to push a space character with NDC (and pop it when you exit). Then print the NDC as the first part of the message. On 8/31/07, Faine, Mark R. (MSFC-NNM04AA02C)[SAIC] <[EMAIL PROTECTED]> wrote: > > I'd like for Log4J to print the log messages with some sort of > indentation, pre

Pretty Layout of logging by class & method

2007-08-31 Thread Faine, Mark R. (MSFC-NNM04AA02C)[SAIC]
I'd like for Log4J to print the log messages with some sort of indentation, preferably by Class and Method Something like: Start Class1 Inside Main method... Calling Sub method... Inside Sub method... Executing operations in sub method... Sub Method success Main Method succes