This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Bundle/FrameworkBundle/Resources/config/debug_prod.xml

26 lines
1.1 KiB
XML
Raw Normal View History

2013-04-30 18:23:00 +01:00
<?xml version="1.0" ?>
<container xmlns="http://symfony.com/schema/dic/services"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
<parameters>
<parameter key="debug.error_handler.throw_at">0</parameter>
2013-04-30 18:23:00 +01:00
</parameters>
<services>
2015-03-26 12:27:32 +00:00
<service id="debug.debug_handlers_listener" class="Symfony\Component\HttpKernel\EventListener\DebugHandlersListener">
2013-04-30 18:23:00 +01:00
<tag name="kernel.event_subscriber" />
<tag name="monolog.logger" channel="php" />
<argument /><!-- Exception handler -->
2013-04-30 18:23:00 +01:00
<argument type="service" id="logger" on-invalid="null" />
<argument>null</argument><!-- Log levels map for enabled error levels -->
<argument>null</argument>
2014-09-30 08:39:40 +01:00
<argument>true</argument>
<argument>null</argument><!-- %templating.helper.code.file_link_format% -->
2013-04-30 18:23:00 +01:00
</service>
2015-03-26 12:27:32 +00:00
<service id="debug.stopwatch" class="Symfony\Component\Stopwatch\Stopwatch" />
2013-04-30 18:23:00 +01:00
</services>
</container>