in src/main/java/org/apache/sling/launchpad/startupmanager/MBeanStartupListener.java [92:100]
public void startupProgress(float ratio) {
if ( this.available ) {
try {
this.jmxServer.invoke(launcherName, "startupProgress", new Object[]{ratio}, new String[]{Float.class.getName()});
} catch (final Exception e) {
// we ignore this
}
}
}