mirror of https://github.com/apache/cloudstack.git
removing some debug statements
This commit is contained in:
parent
7144ebcaef
commit
8ff85363a8
|
|
@ -3050,8 +3050,6 @@ public abstract class CitrixResourceBase implements ServerResource, HypervisorRe
|
|||
while ( iter.hasNext() ) {
|
||||
VM vm = iter.next();
|
||||
VM.Record vmr = vm.getRecord(conn);
|
||||
s_logger.warn("----------------------" + vmr.nameLabel + ", " + vmr.powerState + " , " +
|
||||
isRefNull(vmr.residentOn) + ", " + vmr.residentOn.getUuid(conn).equals(_host.uuid) + ", " + _host.uuid);
|
||||
if (vmr.powerState != VmPowerState.RUNNING) {
|
||||
continue;
|
||||
}
|
||||
|
|
@ -3061,7 +3059,6 @@ public abstract class CitrixResourceBase implements ServerResource, HypervisorRe
|
|||
if (vmr.residentOn.getUuid(conn).equals(_host.uuid)) {
|
||||
continue;
|
||||
}
|
||||
s_logger.warn("----------------------Removing --" + vmr.nameLabel);
|
||||
iter.remove();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue