String inBundle) {
/*
* Check for configuration for the given package in the default
* properties:
*/
MapProperties properties = (MapProperties) DEFAULT_PROPERTIES
.get(inPackage.replace('.', '-'));
if(properties == null) {
/*
* Try loading the properties for the given package form the
* classpath using the naming convention "<package>/log.eva":
*/
try {
properties = new MapProperties(new DataSource(inClassLoader,
"classpath://" + inPackage.replace('.', '/') + "/"
+ LOG_CONFIG_FILENAME));
}
catch(FileNotFoundException e) {
DEFAULT_LOGGER.log(Level.CONFIG,