removing some debug statements

This commit is contained in:
Abhinandan Prateek 2011-11-04 18:11:44 +05:30 committed by root
parent 7144ebcaef
commit 8ff85363a8
1 changed files with 0 additions and 3 deletions

View File

@ -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();
}