diff options
| author | Angus Salkeld <asalkeld@redhat.com> | 2012-08-14 09:17:55 +1000 |
|---|---|---|
| committer | Mark McLoughlin <markmc@redhat.com> | 2012-09-26 10:35:37 +0100 |
| commit | 942b0c2a7f10f92e559b0c545682f1e1ddd35ceb (patch) | |
| tree | 18ecb020d39b27b5b1db6c5b32ded0d8a6387f37 /openstack/common | |
| parent | 2f279a410a07831344c7ee117afe55886bafe038 (diff) | |
| download | oslo-942b0c2a7f10f92e559b0c545682f1e1ddd35ceb.tar.gz oslo-942b0c2a7f10f92e559b0c545682f1e1ddd35ceb.tar.xz oslo-942b0c2a7f10f92e559b0c545682f1e1ddd35ceb.zip | |
Log config on startup
Part of blueprint service-infrastructure
Change-Id: I60698800231e5de349fdbcf9f9090e5b31727640
Signed-off-by: Angus Salkeld <asalkeld@redhat.com>
Diffstat (limited to 'openstack/common')
| -rw-r--r-- | openstack/common/service.py | 4 |
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() |
