We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 046ba8c commit bb28233Copy full SHA for bb28233
src/App/Traits/ExceptionNotificationHandlerTrait.php
@@ -3,6 +3,7 @@
3
namespace App\Traits;
4
5
use App\Mail\ExceptionOccured;
6
+use Illuminate\Support\Facades\Log;
7
use Mail;
8
use Symfony\Component\Debug\ExceptionHandler as SymfonyExceptionHandler;
9
use Symfony\Component\Debug\Exception\FlattenException;
@@ -68,7 +69,7 @@ public function sendEmail(Exception $exception)
68
69
70
} catch (Exception $exception) {
71
- dd($exception);
72
+ Log::error($exception);
73
74
}
75
0 commit comments