Joey Boggs has uploaded a new change for review. Change subject: fix storage logging typo ......................................................................
fix storage logging typo Bug-Url:https://bugzilla.redhat.com/show_bug.cgi?id=881597 Change-Id: Ibe62a8e24c2163ba453f250a8c2d16d6e0256f5c Signed-off-by: Joey Boggs <[email protected]> --- M src/ovirtnode/storage.py 1 file changed, 2 insertions(+), 2 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-node refs/changes/52/20152/1 diff --git a/src/ovirtnode/storage.py b/src/ovirtnode/storage.py index 635ded5..dd04f94 100644 --- a/src/ovirtnode/storage.py +++ b/src/ovirtnode/storage.py @@ -113,12 +113,12 @@ print (("\n%s is smaller than minimum required size of: " + "%s") % (i, self.__dict__[i_short])) return False - logging.info(("Setting value for %s to %s " % + logger.info(("Setting value for %s to %s " % (self.__dict__[i_short], _functions.OVIRT_VARS[i]))) i_short = i_short.replace("MIN_", "") self.__dict__[i_short] = int(OVIRT_VARS[i]) else: - logging.info("Using default value for: %s" % i_short) + logger.info("Using default value for: %s" % i_short) self.RootBackup_end = self.ROOT_SIZE * 2 + self.EFI_SIZE self.Root_end = self.EFI_SIZE + self.ROOT_SIZE -- To view, visit http://gerrit.ovirt.org/20152 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ibe62a8e24c2163ba453f250a8c2d16d6e0256f5c Gerrit-PatchSet: 1 Gerrit-Project: ovirt-node Gerrit-Branch: master Gerrit-Owner: Joey Boggs <[email protected]> _______________________________________________ node-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/node-patches
