[MonologBridge] Added WebSubscriberProcessor to ease processor configuration

This commit is contained in:
Grégoire Pineau 2018-04-06 12:20:42 +02:00
parent a726f05f81
commit b1287d65d3
2 changed files with 15 additions and 1 deletions

View File

@ -1,6 +1,11 @@
CHANGELOG
=========
4.1.0
-----
* `WebProcessor` now implements `EventSubscriberInterface` in order to be easily autoconfigured
4.0.0
-----

View File

@ -12,14 +12,16 @@
namespace Symfony\Bridge\Monolog\Processor;
use Monolog\Processor\WebProcessor as BaseWebProcessor;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\HttpKernel\Event\GetResponseEvent;
use Symfony\Component\HttpKernel\KernelEvents;
/**
* WebProcessor override to read from the HttpFoundation's Request.
*
* @author Jordi Boggiano <j.boggiano@seld.be>
*/
class WebProcessor extends BaseWebProcessor
class WebProcessor extends BaseWebProcessor implements EventSubscriberInterface
{
public function __construct(array $extraFields = null)
{
@ -34,4 +36,11 @@ class WebProcessor extends BaseWebProcessor
$this->serverData['REMOTE_ADDR'] = $event->getRequest()->getClientIp();
}
}
public static function getSubscribedEvents()
{
return array(
KernelEvents::REQUEST => array('onKernelRequest', 4096),
);
}
}