logger.debug("Reading bootstrap properties from: " + propertiesResource.toString());
}
Properties properties = new OrderedProperties();
try
{
properties.load(propertiesResource.openStream());
}
catch (IOException e)
{
throw new BootstrapException(MessageFactory.createStaticMessage("Could not load properties from: %s", propertiesResource.toString()), e);
}