Lower severity level of log messages from http.view (#21091)

This commit is contained in:
Thomas Lovén 2019-03-27 00:18:32 +01:00 committed by Charles Garwood
parent 1766536812
commit 19d99ddf57

View file

@ -102,8 +102,8 @@ def request_handler_factory(view, handler):
else:
raise HTTPUnauthorized()
_LOGGER.info('Serving %s to %s (auth: %s)',
request.path, request.get(KEY_REAL_IP), authenticated)
_LOGGER.debug('Serving %s to %s (auth: %s)',
request.path, request.get(KEY_REAL_IP), authenticated)
try:
result = handler(request, **request.match_info)