if (mod.configure(this.booter))
{
if (LOGGER.isDebugEnabled())
{
LOGGER.debug("Conf: " +
new PadMessage(mod.getModule().getModuleClass(), 70) +
" [" + mod.getModule().getSubSystem() + ']');
}
}
}
for (int i = 0; i < this.modules.size(); i++)
{
final PackageState mod = this.modules.get(i);
if (isInitializable(mod) == false)
{
mod.markError();
continue;
}
final StopWatch stopWatch = StopWatch.startNew();
if (mod.initialize(this.booter))
{
if (LOGGER.isDebugEnabled())
{
LOGGER.debug("Init: " +
new PadMessage(mod.getModule().getModuleClass(), 70) +
" [" + mod.getModule().getSubSystem() + ']');
}
}
times.add(new BootTimeEntry(mod.getModule().getModuleClass(), stopWatch.getElapsedTime()));
}