Ido Barkan has uploaded a new change for review. Change subject: Better logging for Non-existing config set ......................................................................
Better logging for Non-existing config set Change-Id: I1fa8124b803e3957b2ff9629e062e2e93913b199 Signed-off-by: Ido Barkan <[email protected]> --- M lib/vdsm/netconfpersistence.py 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/86/37486/1 diff --git a/lib/vdsm/netconfpersistence.py b/lib/vdsm/netconfpersistence.py index f0aac38..2e854d1 100644 --- a/lib/vdsm/netconfpersistence.py +++ b/lib/vdsm/netconfpersistence.py @@ -131,7 +131,7 @@ networkEntities[fileName] = self._getConfigDict(fullPath) except OSError as ose: if ose.errno == errno.ENOENT: - logging.debug('Non-existing config set.') + logging.debug('Non-existing config set: %s', path) else: raise -- To view, visit http://gerrit.ovirt.org/37486 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I1fa8124b803e3957b2ff9629e062e2e93913b199 Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Ido Barkan <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches
