我遇到了以下问题:我的symfony应用程序使用
保持垃圾邮件的日志request.ERROR: Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET
未找到路线时。我已经配置了我的monolog(config_prod.yml)处理程序,如下所示:
monolog:
handlers:
main:
type: fingers_crossed
action_level: error
handler: nested
excluded_404s:
- .*
nested:
type: stream
path: "%kernel.logs_dir%/%kernel.environment%.log"
level: debug
console:
type: console
然而,我仍然将404记录为错误。
有人可以帮忙吗?