|
5 | 5 | * See LICENSE bundled with this library for license details.
|
6 | 6 | */
|
7 | 7 | -->
|
8 |
| -<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
9 |
| - xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> |
| 8 | +<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> |
10 | 9 |
|
11 |
| - <virtualType name="gelfTransport" type="Opengento\Logger\Transport\UdpTransportWrapper"> |
| 10 | + <virtualType name="GelfTransport" type="Opengento\Logger\Transport\UdpTransportWrapper"> |
12 | 11 | <arguments>
|
13 | 12 | <argument name="hostPath" xsi:type="string">loggin/gelf/transport_host</argument>
|
14 | 13 | <argument name="portPath" xsi:type="string">loggin/gelf/transport_port</argument>
|
15 | 14 | </arguments>
|
16 | 15 | </virtualType>
|
17 | 16 |
|
18 |
| - <virtualType name="gelfPublisher" type="Gelf\Publisher"> |
| 17 | + <virtualType name="GelfPublisher" type="Gelf\Publisher"> |
19 | 18 | <arguments>
|
20 |
| - <argument name="transport" xsi:type="object">gelfTransport</argument> |
| 19 | + <argument name="transport" xsi:type="object">GelfTransport</argument> |
21 | 20 | </arguments>
|
22 | 21 | </virtualType>
|
23 | 22 |
|
24 | 23 | <virtualType name="GelfHandler" type="Opengento\Logger\Handler\GelfHandler">
|
25 | 24 | <arguments>
|
26 | 25 | <argument name="isEnabled" xsi:type="string">loggin/gelf/is_enabled</argument>
|
27 | 26 | <argument name="levelPath" xsi:type="string">loggin/gelf/level</argument>
|
28 |
| - <argument name="publisher" xsi:type="object">gelfPublisher</argument> |
| 27 | + <argument name="publisher" xsi:type="object">GelfPublisher</argument> |
29 | 28 | </arguments>
|
30 | 29 | </virtualType>
|
31 | 30 |
|
|
73 | 72 |
|
74 | 73 | <virtualType name="NoopHandler" type="Monolog\Handler\NullHandler"/>
|
75 | 74 |
|
76 |
| - <type name="Magento\Framework\Logger\Monolog"> |
77 |
| - <plugin name="override_set_handlers_method" type="Opengento\Logger\Plugin\MonologPlugin" sortOrder="1"/> |
78 |
| - </type> |
79 |
| - |
80 | 75 | <type name="Magento\Framework\Logger\Monolog">
|
81 | 76 | <arguments>
|
82 |
| - <argument name="name" xsi:type="string">main</argument> |
83 | 77 | <argument name="handlers" xsi:type="array">
|
84 | 78 | <item name="gelf" xsi:type="object">GelfHandler</item>
|
85 | 79 | <item name="mail" xsi:type="object">MailHandler</item>
|
|
93 | 87 | <item name="custom_context" xsi:type="object">Opengento\Logger\Processor\CustomContextProcessor</item>
|
94 | 88 | </argument>
|
95 | 89 | </arguments>
|
| 90 | + <plugin name="override_set_handlers_method" type="Opengento\Logger\Plugin\MonologPlugin" sortOrder="1"/> |
96 | 91 | </type>
|
97 | 92 | </config>
|
98 |
| - |
0 commit comments