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

35 lines
1.6 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">-1</parameter>
2013-04-30 18:23:00 +01:00
</parameters>
<services>
<defaults public="false" />
<service id="debug.debug_handlers_listener" class="Symfony\Component\HttpKernel\EventListener\DebugHandlersListener" public="true">
2013-04-30 18:23:00 +01:00
<tag name="kernel.event_subscriber" />
<tag name="monolog.logger" channel="php" />
2015-10-05 17:52:37 +01:00
<argument>null</argument><!-- Exception handler -->
2013-04-30 18:23:00 +01:00
<argument type="service" id="logger" on-invalid="null" />
<argument>-1</argument><!-- Log levels map for enabled error levels -->
<argument>%debug.error_handler.throw_at%</argument>
2014-09-30 08:39:40 +01:00
<argument>true</argument>
2016-09-19 13:07:31 +01:00
<argument type="service" id="debug.file_link_formatter"></argument>
<argument>true</argument>
2013-04-30 18:23:00 +01:00
</service>
<service id="debug.stopwatch" class="Symfony\Component\Stopwatch\Stopwatch" public="true" />
<service id="Symfony\Component\Stopwatch\Stopwatch" alias="debug.stopwatch" />
2016-09-19 13:07:31 +01:00
<service id="debug.file_link_formatter" class="Symfony\Component\HttpKernel\Debug\FileLinkFormatter">
2016-09-19 13:07:31 +01:00
<argument>%debug.file_link_format%</argument>
</service>
<service id="Symfony\Component\HttpKernel\Debug\FileLinkFormatter" alias="debug.file_link_formatter" />
2013-04-30 18:23:00 +01:00
</services>
</container>