我想在laravel 5中禁用sociallite日志,我该怎么做?我尝试了不同的方法,但结果相同,但对我不起作用。
如何执行此操作,如何在Laravel 5中禁用日志文件?
我只是不想只禁用(sociallite)而不禁用其他日志。
答案 0 :(得分:0)
您可以将异常类型添加到项目中的异常处理程序类($dontReport
)的app/Exceptions/Handler.php
属性中,以防止记录这些异常。例如:
class Handler extends ExceptionHandler
{
/**
* A list of the exception types that are not reported.
*
* @var array
*/
protected $dontReport = [
\Laravel\Socialite\Two\InvalidStateException
];
有关更多信息,请参见Laravel的Error Handling documentation。