TokenController logging
If a token is processed with the TokenController,
it is logged in a file or database. By default, the configuration uses database logging:
ses_gdpr_log
:
| mysql> select * from ses_gdpr_log;
+----+---------------------+-------------------+-----------+---------------------------------------------------------------------------------------------------------------------------+--------------------------+---------+
| id | log_timestamp | log_channel | log_level | log_message | log_mail | user_id |
+----+---------------------+-------------------+-----------+---------------------------------------------------------------------------------------------------------------------------+--------------------------+---------+
| 3 | 2019-02-12 16:05:08 | silver_eshop_gdpr | 600 | Called token method: Silversolutions\Bundle\EshopBundle\Services\Token\TokenServiceMethodProcessorService::enableEzUser() | dam@silversolutions.de | 381 |
+----+---------------------+-------------------+-----------+---------------------------------------------------------------------------------------------------------------------------+--------------------------+---------+
|
Configuration
You activate the file and database logging by adding the pushHandler()
method call with the gdpr_log_handler.doctrine
and/or gdpr_log_handler.file
service as an argument:
src/Silversolutions/Bundle/EshopBundle/Resources/config/ses_services.xml
:
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 | <service id="siso_core.gdpr_log_repository.doctrine" class="%siso_core.gdpr_log_repository.doctrine.class%">
<factory service="Doctrine\Common\Persistence\ObjectManager" method="getRepository" />
<argument type="string">SilversolutionsEshopBundle:GdprLog</argument>
</service>
<service id="siso_core.gdpr_log_handler.doctrine" class="%siso_tools.logging_handler.doctrine.class%">
<call method="setLogRepository">
<argument type="service" id="siso_core.gdpr_log_repository.doctrine" />
</call>
<call method="setFormatter">
<argument type="service" id="siso_tools.logging_formatter.doctrine"/>
</call>
</service>
<service id="siso_core.gdpr_log_handler.file" class="Monolog\Handler\StreamHandler">
<argument type="string">%kernel.logs_dir%/%kernel.environment%-siso.eshop.gdpr.log</argument>
</service>
<service id="siso_core.gdpr_logger" class="Symfony\Bridge\Monolog\Logger">
<argument type="string">silver_eshop_gdpr</argument> <!-- The logging channel -->
<call method="pushHandler">
<argument type="service" id="siso_core.gdpr_log_handler.doctrine" />
</call>
<!-- File logging is deactivated by default -->
<!--<call method="pushHandler">
<argument type="service" id="siso_core.gdpr_log_handler.file" />
</call>-->
</service>
|