50% discount in conference replays
2020 and 2021 events
In English, French, German, Polish and Spanish
How to Configure Monolog to Exclude 404 Errors from the Log
Edit this pageWarning: You are browsing the documentation for Symfony 3.3, which is no longer maintained.
Read the updated version of this page for Symfony 6.0 (the current stable version).
How to Configure Monolog to Exclude 404 Errors from the Log
Sometimes your logs become flooded with unwanted 404 HTTP errors, for example,
when an attacker scans your app for some well-known application paths (e.g.
`/phpmyadmin`). When using a fingers_crossed
handler, you can exclude
logging these 404 errors based on a regular expression in the MonologBundle
configuration:
- YAML
- XML
- PHP
1 2 3 4 5 6 7 8 9
# app/config/config.yml
monolog:
handlers:
main:
# ...
type: fingers_crossed
handler: ...
excluded_404s:
- ^/phpmyadmin
This work, including the code samples, is licensed under a
Creative Commons BY-SA 3.0
license.