log1.debug( "this is the cocoon logger" );
log1.info( "this is the cocoon logger" );
log1.info( "this is the cocoon logger" );
Logger log2 = log1.getChildLogger( "classloader" );
log2.debug( "this is the childlogger classloader of the cocoon logger" );
log2.info( "this is the childlogger classloader of the cocoon logger" );
Logger log3 = m_lkm.getLogger( "cocoon.classloader" );
log3.debug( "this is the cocoon.classloader logger" );
log3.info( "this is the cocoon.classloader logger" );
Logger log4 = m_lkm.getLogger( "foo" );
log4.debug( "this is the foo logger" );