Quoting [EMAIL PROTECTED]:
> + /**
> + * Get the logger repository with the corresponding name.
> + *
> + * <p>Returned value can be null if the selector is unaware of the
> repository
> + * with the given name.
> + */
> + public LoggerRepository getLoggerRepository(String name) {
> + if( Constants.JNDI_CONTEXT_NAME.equals(name)) {
> + return LogManager.defaultLoggerRepository;
> + } else {
> + return (LoggerRepository) hierMap.get(name);
> + }
> + }
Shouldn't that be...
if( Constants.DEFAULT_REPOSITORY_NAME.equals(name)) {
return LogManager.defaultLoggerRepository;
????
Jake
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]