Skip to content

Add documentation on new monolog processors #10244

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions logging/processors.rst
Original file line number Diff line number Diff line change
Expand Up @@ -172,10 +172,20 @@ Symfony's MonologBridge provides processors that can be registered inside your a
:class:`Symfony\\Bridge\\Monolog\\Processor\\WebProcessor`
Overrides data from the request using the data inside Symfony's request
object.

:class:`Symfony\\Bridge\\Monolog\\Processor\\RouteProcessor`
Adds information about current route (controller, action, route parameters).

:class:`Symfony\\Bridge\\Monolog\\Processor\\ConsoleCommandProcessor`
Adds information about current console command.

.. versionadded:: 3.4

The ``TokenProcessor`` class was introduced in Symfony 3.4.

.. versionadded:: 4.3

The ``RouteProcessor`` and the ``ConsoleCommandProcessor`` were introduced in Symfony 4.3.

Registering Processors per Handler
----------------------------------
Expand Down