62 lines
2.2 KiB
PHP
62 lines
2.2 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Symfony package.
|
|
*
|
|
* (c) Fabien Potencier <fabien@symfony.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Symfony\Bundle\MonologBundle\DependencyInjection\Compiler;
|
|
|
|
|
|
use Symfony\Component\DependencyInjection\Reference;
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
|
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
|
|
use Symfony\Component\DependencyInjection\Definition;
|
|
use Monolog\Logger;
|
|
|
|
/**
|
|
* Adds the DebugHandler when the profiler is enabled and kernel.debug is true.
|
|
*
|
|
* @author Christophe Coevoet <stof@notk.org>
|
|
* @author Jordi Boggiano <j.boggiano@seld.be>
|
|
*
|
|
* @deprecated since version 2.12, to be removed in 4.0. Use AddDebugLogProcessorPass in FrameworkBundle instead.
|
|
*/
|
|
class DebugHandlerPass implements CompilerPassInterface
|
|
{
|
|
private $channelPass;
|
|
|
|
public function __construct(LoggerChannelPass $channelPass)
|
|
{
|
|
// Trigger the deprecation only when using a Symfony version supporting the new feature (i.e. 3.2+)
|
|
if (class_exists('Symfony\Bridge\Monolog\Processor\DebugProcessor') && class_exists('Symfony\Bundle\FrameworkBundle\DependencyInjection\Compiler\AddDebugLogProcessorPass')) {
|
|
@trigger_error('The '.__CLASS__.' class is deprecated since version 2.12 and will be removed in 4.0. Use AddDebugLogProcessorPass in FrameworkBundle instead.', E_USER_DEPRECATED);
|
|
}
|
|
|
|
$this->channelPass = $channelPass;
|
|
}
|
|
|
|
public function process(ContainerBuilder $container)
|
|
{
|
|
if (!$container->hasDefinition('profiler')) {
|
|
return;
|
|
}
|
|
|
|
if (!$container->getParameter('kernel.debug')) {
|
|
return;
|
|
}
|
|
|
|
$debugHandler = new Definition('%monolog.handler.debug.class%', array(Logger::DEBUG, true));
|
|
$container->setDefinition('monolog.handler.debug', $debugHandler);
|
|
|
|
foreach ($this->channelPass->getChannels() as $channel) {
|
|
$container
|
|
->getDefinition($channel === 'app' ? 'monolog.logger' : 'monolog.logger.'.$channel)
|
|
->addMethodCall('pushHandler', array(new Reference('monolog.handler.debug')));
|
|
}
|
|
}
|
|
}
|