Sandro Bonazzola has uploaded a new change for review. Change subject: hardware: fixed wrong debug log ......................................................................
hardware: fixed wrong debug log Related-To: https://bugzilla.redhat.com/1100326 Change-Id: Id2ef801dfa5d90ed43adb583744de11d8162748d Signed-off-by: Sandro Bonazzola <[email protected]> --- M src/ovirt_host_deploy/hardware.py 1 file changed, 4 insertions(+), 2 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-host-deploy refs/changes/31/28031/1 diff --git a/src/ovirt_host_deploy/hardware.py b/src/ovirt_host_deploy/hardware.py index 773bffc..4632aac 100644 --- a/src/ovirt_host_deploy/hardware.py +++ b/src/ovirt_host_deploy/hardware.py @@ -195,11 +195,13 @@ try: if self._isVirtualizationEnabled(): self.logger.debug( - _('Hardware does not support virtualization') + _('Hardware supports virtualization') ) ret = self.DETECT_RESULT_SUPPORTED else: - self.logger.debug(_('Hardware supports virtualization')) + self.logger.debug( + _('Hardware does not support virtualization') + ) ret = self.DETECT_RESULT_UNSUPPORTED except (AttributeError, IOError): self.logger.debug('Cannot detect virualization', exc_info=True) -- To view, visit http://gerrit.ovirt.org/28031 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Id2ef801dfa5d90ed43adb583744de11d8162748d Gerrit-PatchSet: 1 Gerrit-Project: ovirt-host-deploy Gerrit-Branch: master Gerrit-Owner: Sandro Bonazzola <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
