summaryrefslogtreecommitdiff
path: root/httpd
diff options
context:
space:
mode:
authorBrant Knudson <bknudson@us.ibm.com>2013-12-13 13:05:28 -0600
committerBrant Knudson <bknudson@us.ibm.com>2013-12-13 13:08:12 -0600
commit9b07e20dee4c1fc7baa980dc2bed6cf76aab4287 (patch)
treeec97f1191c7b62cd84d12dca16e6c17a03957b77 /httpd
parentf6aa72334c04bba3b24191f898d10da6d6190be6 (diff)
downloadkeystone-9b07e20dee4c1fc7baa980dc2bed6cf76aab4287.tar.gz
Refactor setup_logging
This change just cleans up the setup_logging function. It was defined in keystone.common.config and then also exported from keystone.config. Also, it had extra parameters that were unused. This takes care of a NOTE (which probably should have been a TODO) in the code. Change-Id: I1a46c8974cbd68a5bf708d253adfadc1fdb76dcd
Diffstat (limited to 'httpd')
-rw-r--r--httpd/keystone.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/httpd/keystone.py b/httpd/keystone.py
index aa057136c..dd3c2f93d 100644
--- a/httpd/keystone.py
+++ b/httpd/keystone.py
@@ -33,7 +33,7 @@ from keystone.openstack.common import log
CONF = config.CONF
CONF(project='keystone')
-config.setup_logging(CONF)
+config.setup_logging()
environment.use_stdlib()
name = os.path.basename(__file__)