How to Configure Monolog to Exclude 404 Errors from the Log
Warning: You are browsing the documentation for Symfony 2.x, which is no longer maintained.
Read the updated version of this page for Symfony 7.1 (the current stable version).
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:
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.