final InputStream propertiesInputStream = openBundledFile(LOG_PROPERTIES);
if (propertiesInputStream != null) {
final Properties props = new Properties();
props.load(propertiesInputStream);
propertiesInputStream.close();
fLogManager = new PluginLogManager(this, props);
}
} catch (IOException ioe) {
throw new EvolizerRuntimeException("Error configuring DAForJavaPlugin", ioe);
}
}