I have a question about the references returned via the getLogger method that I hope someone can answer easily. Assuming that multiple calls were made to the Logger.getLogger() method(with the same parm), would they all return exactly the same reference? ie...
When the call: private static final Logger log1=Logger.getLogger( "sameclass.class" ); is made, and for some reason another call is made for a temporary logger at some later point in the program execution: private Logger log2=Logger.getLogger( "sameclass.class" ); Would the following ALWAYS be true? log1 == log2 (reference compare...not using the .equals() method) Thanks, Doug Clifton --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
