File f= loader.find( "logging.xml" );
if ( f != null ) {
XStreamPersister xp = new XStreamPersisterFactory().createXMLPersister();
BufferedInputStream in = new BufferedInputStream( new FileInputStream( f ) );
try {
LoggingInfo loginfo = xp.load(in,LoggingInfo.class);
final String location = getLogFileLocation(loginfo.getLocation());
LoggingUtils.initLogging(loader, loginfo.getLevel(), !loginfo.isStdOutLogging(),
location);
}
finally {