Skip to content

[Logger] Fix group handler name #19859

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 1 commit into from
May 6, 2024
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
4 changes: 2 additions & 2 deletions logging/monolog_email.rst
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ get logged on the server as well as the emails being sent:
->handler('grouped')
;

$monolog->handler('group')
$monolog->handler('grouped')
->type('group')
->members(['streamed', 'deduplicated'])
;
Expand Down Expand Up @@ -322,7 +322,7 @@ get logged on the server as well as the emails being sent:
;
};

This uses the ``group`` handler to send the messages to the two
This uses the ``grouped`` handler to send the messages to the two
group members, the ``deduplicated`` and the ``stream`` handlers. The messages will
now be both written to the log file and emailed.

Expand Down
Loading