MCPcopy
hub / github.com/tornadoweb/tornado / _log

Method _log

tornado/web.py:1906–1913  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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(

Callers 1

finishMethod · 0.95

Calls 1

log_requestMethod · 0.80

Tested by

no test coverage detected