lithium\analysis\logger\adapter\FirePhp::bind()
Binds the response object to the logger and sets the required Wildfire protocol headers.
Parameters
-
object
$response
An instance of a response object (usually
lithium\action\Response
) with HTTP request information.
Returns
voidSource
public function bind($response) {
$this->_response = $response;
$this->_response->headers += $this->_headers;
foreach ($this->_queue as $message) {
$this->_write($message);
}
}