Collects data for the given Request and Response.
@api
Request $request A Request instance:
Response $response A Response instance:
\Exception $exception An Exception instance:
Overrides DataCollectorInterface::collect
public function collect(Request $request, Response $response, \Exception $exception = null) {
if (null !== $this->logger) {
$this->data = array(
'error_count' => $this->logger
->countErrors(),
'logs' => $this
->sanitizeLogs($this->logger
->getLogs()),
'deprecation_count' => $this
->computeDeprecationCount(),
);
}
}