From 99aa625adbc86558866a222ce1abe0bd6f7245e9 Mon Sep 17 00:00:00 2001 From: Joe Gordon Date: Thu, 10 Jan 2013 15:46:17 -0800 Subject: [PATCH] Expand quota logging Change-Id: Ied8bdbe2b15aebb313868b65f7660ba7ad0cb3c8 --- nova/quota.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nova/quota.py b/nova/quota.py index c2e34cca5..2faccae40 100644 --- a/nova/quota.py +++ b/nova/quota.py @@ -923,6 +923,7 @@ class QuotaEngine(object): # logged, however, because this is less than optimal. LOG.exception(_("Failed to commit reservations " "%(reservations)s") % locals()) + LOG.debug(_("Committed reservations %(reservations)s") % locals()) def rollback(self, context, reservations): """Roll back reservations. @@ -941,6 +942,7 @@ class QuotaEngine(object): # logged, however, because this is less than optimal. LOG.exception(_("Failed to roll back reservations " "%(reservations)s") % locals()) + LOG.debug(_("Rolled back reservations %(reservations)s") % locals()) def usage_reset(self, context, resources): """