Re: LogManager / LoggerRepository

2012-02-17 Thread Jacob Kjome
It's not clear what problem you are trying to solve?  When you call Logger.getLogger("blah"), if "blah" Logger does not yet exist, it is created.  If it does exist it is returned.  Loggers are stored in a LoggerRepository.  How many logger repositories there are depends upon logger repository

LogManager / LoggerRepository

2012-02-17 Thread indomie15
Hi all, I am using log4j-1.2.8.jar in my application. How do I manage my Logger object? the number of logger object will be created everytime it is access by application. Is there a way to create the logger object one time and subsequently the created logger object will be used by the applicatio