summaryrefslogtreecommitdiffstats
path: root/nova/service.py
diff options
context:
space:
mode:
authorRyan Lane <rlane@wikimedia.org>2011-01-25 20:50:14 +0000
committerRyan Lane <rlane@wikimedia.org>2011-01-25 20:50:14 +0000
commitfc8f41e9c34c8d14d1c66ca03ce7098cc6b7f04d (patch)
tree9e4c224d36a054136d3a7ec18d0f66da52e05551 /nova/service.py
parent2e6a5713d86b487c0b26a72b111531781745aeb2 (diff)
parentb2d0a77c53d1bd108d233e58f68655381cec4e16 (diff)
downloadnova-fc8f41e9c34c8d14d1c66ca03ce7098cc6b7f04d.tar.gz
nova-fc8f41e9c34c8d14d1c66ca03ce7098cc6b7f04d.tar.xz
nova-fc8f41e9c34c8d14d1c66ca03ce7098cc6b7f04d.zip
Merge from trunk
Diffstat (limited to 'nova/service.py')
-rw-r--r--nova/service.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/service.py b/nova/service.py
index 91e00d3d1..2c30997f2 100644
--- a/nova/service.py
+++ b/nova/service.py
@@ -221,10 +221,10 @@ def serve(*services):
name = '_'.join(x.binary for x in services)
logging.debug(_("Serving %s"), name)
-
logging.debug(_("Full set of FLAGS:"))
for flag in FLAGS:
- logging.debug("%s : %s" % (flag, FLAGS.get(flag, None)))
+ flag_get = FLAGS.get(flag, None)
+ logging.debug("%(flag)s : %(flag_get)s" % locals())
for x in services:
x.start()