Eduardo has uploaded a new change for review. Change subject: Improve __prefetch logging. ......................................................................
Improve __prefetch logging. Related-To: https://bugzilla.redhat.com/show_bug.cgi?id=967296 Change-Id: I2c00fc114a8582aad15280f502a8a035d22af2a4 Signed-off-by: Eduardo <[email protected]> --- M vdsm/storage/hsm.py 1 file changed, 3 insertions(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/83/15483/1 diff --git a/vdsm/storage/hsm.py b/vdsm/storage/hsm.py index a1cc1e7..eb8a5b8 100644 --- a/vdsm/storage/hsm.py +++ b/vdsm/storage/hsm.py @@ -2316,7 +2316,9 @@ else: sdCache.knownSDs.update(doms) - self.log.debug("knownSDs: %s", sdCache.knownSDs) + self.log.debug("knownSDs: {%s}", ", ".join("%s: %s.%s" % + (k, v.__module__, v.__name__) + for k, v in sdCache.knownSDs.iteritems())) res.append({'id': conDef["id"], 'status': status}) -- To view, visit http://gerrit.ovirt.org/15483 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I2c00fc114a8582aad15280f502a8a035d22af2a4 Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Eduardo <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches
