Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 9af6b31

Browse filesBrowse files
committed
Merge branch '5.4' into 6.0
* 5.4: [Logging] Mention `#[AsMonologProcessor]`
2 parents 14392c4 + b0c1ea2 commit 9af6b31
Copy full SHA for 9af6b31

File tree

1 file changed

+26
-0
lines changed
Filter options

1 file changed

+26
-0
lines changed

‎logging/processors.rst

Copy file name to clipboardExpand all lines: logging/processors.rst
+26Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,32 @@ If you use several handlers, you can also register a processor at the
164164
handler level or at the channel level instead of registering it globally
165165
(see the following sections).
166166

167+
When registering a new processor, instead of adding the tag manually in your
168+
configuration files, you can use the ``#[AsMonologProcessor]`` attribute to
169+
apply it on the processor class::
170+
171+
// src/Logger/SessionRequestProcessor.php
172+
namespace App\Logger;
173+
174+
use Monolog\Attribute\AsMonologProcessor;
175+
176+
#[AsMonologProcessor]
177+
class SessionRequestProcessor
178+
{
179+
// ...
180+
}
181+
182+
The ``#[AsMonologProcessor]`` attribute takes these optional arguments:
183+
184+
* ``channel``: the logging channel the processor should be pushed to;
185+
* ``handler``: the handler the processor should be pushed to;
186+
* ``method``: the method that processes the records (useful when applying
187+
the attribute to the entire class instead of a single method).
188+
189+
.. versionadded:: 3.8
190+
191+
The ``#[AsMonologProcessor]`` attribute was introduced in MonologBundle 3.8.
192+
167193
Symfony's MonologBridge provides processors that can be registered inside your application.
168194

169195
:class:`Symfony\\Bridge\\Monolog\\Processor\\DebugProcessor`

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.