You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The default access log format attempts to output the Referer HTTP request header, referring to it as "Referrer". The latter is the correct spelling of the word, but the inventors of the header misspelled it as "Referer". To make this work as intended, the LOG_FORMAT and the logging docs (which show the default log format) should be updated to use the misspelled version of the word.
The docs for the default log format also do not match the actual default log format in that it shows %l and %u which don't actually exist and %t which doesn't appear to be in the default log format.
The text was updated successfully, but these errors were encountered:
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a [new issue] for related bugs.
If you feel like there's important points made in this discussion, please include those exceprts into that [new issue].
[new issue]: https://github.com/aio-libs/aiohttp/issues/new
The default access log format attempts to output the Referer HTTP request header, referring to it as "Referrer". The latter is the correct spelling of the word, but the inventors of the header misspelled it as "Referer". To make this work as intended, the LOG_FORMAT and the logging docs (which show the default log format) should be updated to use the misspelled version of the word.
LOG_FORMAT = '%a %t "%r" %s %b "%{Referrer}i" "%{User-Agent}i"'
vs
LOG_FORMAT = '%a %t "%r" %s %b "%{Referer}i" "%{User-Agent}i"'
The docs for the default log format also do not match the actual default log format in that it shows %l and %u which don't actually exist and %t which doesn't appear to be in the default log format.
The text was updated successfully, but these errors were encountered: