Log namespacing

This commit is contained in:
snipe 2021-03-09 13:39:53 -08:00
parent f05a8d782c
commit cf4e97f103

View file

@ -39,7 +39,7 @@ class Handler extends ExceptionHandler
public function report(Exception $exception)
{
if ($this->shouldReport($exception)) {
Log::error($exception);
\Log::error($exception);
return parent::report($exception);
}
}