On Dec 17, 2008, at 2:17 PM, Erik Hatcher wrote:
We get the Logger everytime we use it with something like: Logger log = LoggerFactory.getLogger(classname+":"+core.getName() );
but with a dot separator and the core in front, since the logging configuration treats dots as hierarchical logging levels. right?
Logger log = LoggerFactory.getLogger(core.getName()+"."+classname); Erik