// Start it (if needed)
if (!device.isStarted()) {
try {
BootLogInstance.get().debug("Starting " + device.getId());
//new DeviceStarter(device).start(getDefaultStartTimeout());
final StopWatch sw = new StopWatch();
device.start();
sw.stop();
if (sw.isElapsedLongerThen(defaultStartTimeout)) {
BootLogInstance.get().error("Device startup took " + sw + ": "
+ device.getId());
} else if (sw.isElapsedLongerThen(fastStartTimeout)) {
BootLogInstance.get().info("Device startup took " + sw + ": "
+ device.getId());
}
BootLogInstance.get().debug("Started " + device.getId());
} catch (DriverException ex) {