summaryrefslogtreecommitdiff
path: root/keystone/conf
diff options
context:
space:
mode:
authorZuul <zuul@review.openstack.org>2018-06-09 01:13:52 +0000
committerGerrit Code Review <review@openstack.org>2018-06-09 01:13:52 +0000
commitfd4e4dc34673d8831866f0bc0a4a613bf76bf1c2 (patch)
treefb993d255717acae385629cd99fbab6611e17886 /keystone/conf
parentb2368de7ac1418ce709e20d26e94b05092e584d9 (diff)
parentddd841ea7deb9ed65be600b4626dcf59128e19f7 (diff)
downloadkeystone-fd4e4dc34673d8831866f0bc0a4a613bf76bf1c2.tar.gz
Merge "Expand on debug_middleware option"
Diffstat (limited to 'keystone/conf')
-rw-r--r--keystone/conf/wsgi.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/keystone/conf/wsgi.py b/keystone/conf/wsgi.py
index ac9c67e8f..c50e001e6 100644
--- a/keystone/conf/wsgi.py
+++ b/keystone/conf/wsgi.py
@@ -22,7 +22,12 @@ debug_middlware = cfg.BoolOpt(
If set to true, this enables the oslo debug middleware in Keystone. This
Middleware prints a lot of information about the request and the response. It
is useful for getting information about the data on the wire (decoded) and
-passed to the WSGI application pipeline.
+passed to the WSGI application pipeline. This middleware has no effect on
+the "debug" setting in the [DEFAULT] section of the config file or setting
+Keystone's log-level to "DEBUG"; it is specific to debugging the WSGI data
+as it enters and leaves Keystone (specific request-related data). This option
+is used for introspection on the request and response data between the web
+server (apache, nginx, etc) and Keystone.
This middleware is inserted as the first element in the middleware chain
and will show the data closest to the wire.