_log() protected method

logging.
Deprecation: Overwriting Client->_log is deprecated. Handle logging functionality by using a custom LoggerInterface.
protected _log ( mixed $context )
$context mixed
Example #1
0
 protected function _log($context)
 {
     if ($context instanceof Request) {
         $this->_lastRequest = $context;
     }
     parent::_log($context);
 }