MCPcopy Create free account
hub / github.com/EasyIME/PIME / _log

Method _log

python/python3/tornado/web.py:1739–1746  ·  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

1737 raise NotImplementedError()
1738
1739 def _log(self) -> None:
1740 """Logs the current request.
1741
1742 Sort of deprecated since this functionality was moved to the
1743 Application, but left in place for the benefit of existing apps
1744 that have overridden this method.
1745 """
1746 self.application.log_request(self)
1747
1748 def _request_summary(self) -> str:
1749 return "%s %s (%s)" % (

Callers 1

finishMethod · 0.95

Calls 1

log_requestMethod · 0.80

Tested by

no test coverage detected