Laravel dont报告处理程序无法正常工作

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Laravel dont报告处理程序无法正常工作相关的知识,希望对你有一定的参考价值。

Laravel dontReport在处理程序文件中不能使用dontReport的代码

protected $dontReport = [
    IlluminateAuthAuthenticationException::class,
    IlluminateAuthAccessAuthorizationException::class,
    SymfonyComponentHttpKernelExceptionHttpException::class,
    IlluminateDatabaseEloquentModelNotFoundException::class,
    IlluminateSessionTokenMismatchException::class,
    IlluminateValidationValidationException::class,
    IlluminateViewView::class,
    IlluminateRoutingRouteCollection::class,
    IlluminateFoundationHttpMiddlewareVerifyCsrfToken::class,
    IlluminateSessionMiddlewareStartSession::class,
];
答案

尝试在report方法中添加此代码:

if($this->shouldReport($exception) {
    // Send email
}

您还可以考虑检查您的环境以及同一if语句中是否存在异常消息。

以上是关于Laravel dont报告处理程序无法正常工作的主要内容,如果未能解决你的问题,请参考以下文章

Laravel + Vue.js 应用程序路由无法正常工作

自动在ssh上输入密码:: dont想做ssh-keygen :: spawn不能正常工作

Laravel 5.2:应用程序密钥的 Artisan 密钥生成无法正常工作

更新到 Laravel 7 php artisan 后无法正常工作

storage:link 在通过 codecommit 将 laravel 应用程序部署到弹性 beanstalk 时无法正常工作

Laravel:使用 ajax 搜索,路由无法正常工作