Add small change for debugging

which is worthful why we failed at.

Change-Id: Ieb9d8889720250d59e063fdbe52f0cc429287a81
This commit is contained in:
Kota Tsuyuzaki 2016-10-16 19:46:32 -07:00
parent aa90483ff0
commit 467e5db075

View File

@ -148,7 +148,7 @@ class S3Token(object):
parts = split_path(req.path, 1, 4, True) parts = split_path(req.path, 1, 4, True)
version, account, container, obj = parts version, account, container, obj = parts
except ValueError: except ValueError:
msg = 'Not a path query, skipping.' msg = 'Not a path query: %s, skipping.' % req.path
self._logger.debug(msg) self._logger.debug(msg)
return self._app(environ, start_response) return self._app(environ, start_response)