if (log.isInfoEnabled())
log.info("Reloading application bundle " + id);
if (isExtensionLoaded(id)) {
ExtensionBundle bundle = getExtensionBundle(id);
try {
bundle.load();
} catch (ExtensionException ee) {
log.warn("Failed to reload extension descriptor.", ee);
extensionBundles.remove(id);
extensionBundlesList.remove(bundle);
throw ee;