forked from paysera/lib-logging-extra-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprocessors.xml
More file actions
34 lines (26 loc) · 1.41 KB
/
processors.xml
File metadata and controls
34 lines (26 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?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">
<services>
<service id="paysera_logging_extra.processor.correlation_id"
class="Paysera\LoggingExtraBundle\Service\Processor\CorrelationIdProcessor">
<tag name="monolog.processor"/>
<argument type="service" id="paysera_logging_extra.correlation_id_provider"/>
</service>
<service id="paysera_logging_extra.processor.introspection_processor"
class="Monolog\Processor\IntrospectionProcessor">
<tag name="monolog.processor"/>
<argument>ERROR</argument>
</service>
<service id="paysera_logging_extra.processor.sentry_context"
class="Paysera\LoggingExtraBundle\Service\Processor\SentryContextProcessor">
<tag name="monolog.processor" handler="sentry"/>
</service>
<service id="paysera_logging_extra.processor.group_exceptions"
class="Paysera\LoggingExtraBundle\Service\Processor\GroupExceptionsProcessor">
<tag name="monolog.processor" handler="sentry"/>
<argument>%paysera_logging_extra.grouped_exceptions%</argument>
</service>
</services>
</container>