Logs the current request. Sort of deprecated since this functionality was moved to the Application, but left in place for the benefit of existing apps that have overridden this method.
(self)
| 1904 | raise NotImplementedError() |
| 1905 | |
| 1906 | def _log(self) -> None: |
| 1907 | """Logs the current request. |
| 1908 | |
| 1909 | Sort of deprecated since this functionality was moved to the |
| 1910 | Application, but left in place for the benefit of existing apps |
| 1911 | that have overridden this method. |
| 1912 | """ |
| 1913 | self.application.log_request(self) |
| 1914 | |
| 1915 | def _request_summary(self) -> str: |
| 1916 | return "{} {} ({})".format( |