Skip to content

Commit

Permalink
Dropped logger-warning for input_terminated to debug.
Browse files Browse the repository at this point in the history
  • Loading branch information
javabrett committed Nov 30, 2017
1 parent 9e9cb84 commit ec79fee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion httpbin/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def before_request():
server = request.environ.get('SERVER_SOFTWARE', '')
if server.lower().startswith('gunicorn/'):
if 'wsgi.input_terminated' in request.environ:
app.logger.warning("environ wsgi.input_terminated already set, keeping: %s"
app.logger.debug("environ wsgi.input_terminated already set, keeping: %s"
% request.environ['wsgi.input_terminated'])
else:
request.environ['wsgi.input_terminated'] = 1
Expand Down

0 comments on commit ec79fee

Please sign in to comment.