Skip to content

[12.x] Update Logging Documentation to Use handler_with #10242

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
Mar 12, 2025
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.md
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ When using the `monolog` driver, the `handler` configuration option is used to s
'logentries' => [
'driver' => 'monolog',
'handler' => Monolog\Handler\SyslogUdpHandler::class,
'with' => [
'handler_with' => [
'host' => 'my.logentries.internal.datahubhost.company.com',
'port' => '10000',
],
Expand Down Expand Up @@ -466,7 +466,7 @@ If you would like to customize the processors for a `monolog` driver, add a `pro
'memory' => [
'driver' => 'monolog',
'handler' => Monolog\Handler\StreamHandler::class,
'with' => [
'handler_with' => [
'stream' => 'php://stderr',
],
'processors' => [
Expand Down