Re: Entering and Exiting Log Methods I.E. java.util.logging.Logger

2009-08-20 Thread Curt Arnold
There is a bug report for it as an enhancement to the extras companion. LogMF and LogSF in the extras provides parameterized logging methods for info, etc. Adding enter and exit methods would be good enhancement. https://issues.apache.org/bugzilla/show_bug.cgi?id=43277 On Aug 20, 2009,

Re: Entering and Exiting Log Methods I.E. java.util.logging.Logger

2009-08-20 Thread Alexander
Nope 2009/8/20 v2cg4ss > > In the java.util.logging.Logger class there are multiple methods to trace > entering and exiting a method, we have used those methods in our code. We > are trying to convert to log4j but I have not been able to find an > equivalent set of methods. > > Object[] values

Can log4j use the character "/" to build hierarchy in addition to character "."

2009-08-20 Thread sukesh jain
Hi, Is it possible to configure log4j to use "/" in addition to "." to build the hierarchy of loggers. For example: / /Parent /Child in addition to "Parent.Child". Is there any configuration to achieve the above scenario? Thanks & Regards, Jain _

Entering and Exiting Log Methods I.E. java.util.logging.Logger

2009-08-20 Thread v2cg4ss
In the java.util.logging.Logger class there are multiple methods to trace entering and exiting a method, we have used those methods in our code. We are trying to convert to log4j but I have not been able to find an equivalent set of methods. Object[] values = new Object[3]; values[0] = aReply; v