Slide 12
Slide 12 text
1. 指定された例外については何もせずに終了
• カスタマイズ可能な App¥Exceptions¥Hander の $dontreport に加え
基底クラス Illuminate¥Foundation¥Exceptions¥Handler には
$internalDontReport
2. 例外自信が report() メソッドを持っていたら
優先的にそちらの処理を行って終了
3. それ以外は $logger->error() でログ出力
12
のデフォルトの挙動
report()
protected $internalDontReport = [
AuthenticationException::class,
AuthorizationException::class,
HttpException::class,
HttpResponseException::class,
ModelNotFoundException::class,
TokenMismatchException::class,
ValidationException::class,
];
report()