continue;
}
// check that the startlevel allows the bundle to be active (111550)
if (tracker == null) {
tracker = new ServiceTracker(context, StartLevel.class.getName(), null);
tracker.open();
}
StartLevel sl = (StartLevel) tracker.getService();
if (sl != null && (sl.getBundleStartLevel(bundles[i]) <= sl.getStartLevel())) {
log.log(new FrameworkLogEntry(FrameworkAdaptor.FRAMEWORK_SYMBOLICNAME, FrameworkLogEntry.ERROR, 0, NLS.bind(EclipseAdaptorMsg.ECLIPSE_STARTUP_ERROR_BUNDLE_NOT_ACTIVE, bundles[i]), 0, null, null));
}