summaryrefslogtreecommitdiffstats
path: root/openstack
diff options
context:
space:
mode:
Diffstat (limited to 'openstack')
-rw-r--r--openstack/common/service.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/openstack/common/service.py b/openstack/common/service.py
index df36319..a009634 100644
--- a/openstack/common/service.py
+++ b/openstack/common/service.py
@@ -28,6 +28,7 @@ import time
import eventlet
import greenlet
+import logging as std_logging
from openstack.common import eventlet_backdoor
from openstack.common import log as logging
@@ -115,6 +116,9 @@ class ServiceLauncher(Launcher):
signal.signal(signal.SIGTERM, self._handle_signal)
signal.signal(signal.SIGINT, self._handle_signal)
+ LOG.debug(_('Full set of CONF:'))
+ CONF.log_opt_values(LOG, std_logging.DEBUG)
+
status = None
try:
super(ServiceLauncher, self).wait()