add more debug info

This commit is contained in:
frank 2012-08-07 17:24:09 -07:00
parent 150ceaa156
commit c8f0806ff8
1 changed files with 3 additions and 2 deletions

View File

@ -403,6 +403,7 @@ public class BareMetalVmManagerImpl extends UserVmManagerImpl implements BareMet
Map<VirtualMachineProfile.Param, Object> params = new HashMap<VirtualMachineProfile.Param, Object>();
params.put(Param.PxeSeverType, _pxeMgr.getPxeServerType(pxeServer));
s_logger.debug(String.format("Deploying a baremetal VM[instance id:%s, name: %s]", vm.getId(), vm.getInstanceName()));
return startVirtualMachine(cmd, params);
}
@ -454,10 +455,10 @@ public class BareMetalVmManagerImpl extends UserVmManagerImpl implements BareMet
PxeServerType pxeType = (PxeServerType) profile.getParameter(Param.PxeSeverType);
if (pxeType == null) {
s_logger.debug("This is a normal IPMI start, skip prepartion of PXE server");
s_logger.debug(String.format("This is a normal IPMI start, skip prepartion of PXE server[vm instance id: %s, vm name: %s]", vm.getId(), vm.getInstanceName()));
return true;
}
s_logger.debug("This is a PXE start, prepare PXE server first");
s_logger.debug(String.format("This is a PXE start, prepare PXE server first[vm instance id: %s, vm name: %s]", vm.getId(), vm.getInstanceName()));
List<HostVO> servers = _hostDao.listBy(Host.Type.PxeServer, null, dest.getPod().getId(), dest.getDataCenter().getId());
if (servers.size() == 0) {