Re: Loggers and Inheritance

2006-06-06 Thread James Stauffer
1. The super-class logger: SuperClazz 2. Define the loggers as follows: private Logger log=Logger.getLogger(getClass()); On 6/6/06, Konstantinos Karadamoglou <[EMAIL PROTECTED]> wrote: Hello all, I have two questions about Loggers and Inheritance. Lets assume that we have following

Loggers and Inheritance

2006-06-06 Thread Konstantinos Karadamoglou
Hello all, I have two questions about Loggers and Inheritance. Lets assume that we have following class inheritance: public class SuperClazz{ private Logger log=Logger.getLogger(SuperClazz.class); private void method1(){ log.info("method1 in