/**
  * {@inheritdoc}
  */
 protected function decorate($method, array $params = array())
 {
     $this->stopwatch->start($name = 'ivory.http_adapter');
     try {
         $result = parent::decorate($method, $params);
     } catch (\Exception $e) {
         $this->stopwatch->stop($name);
         throw $e;
     }
     $this->stopwatch->stop($name);
     return $result;
 }