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 b8dcd2c commit d1b1ff1Copy full SHA for d1b1ff1
bootstrap/app.php
@@ -38,6 +38,13 @@
38
]);
39
})->stop();
40
41
+ $exceptions->report(function (\GuzzleHttp\Exception\ConnectException $e) {
42
+ Log::warning('Connect Exception', [
43
+ 'message' => $e->getMessage(),
44
+ 'url' => (string) $e->getRequest()?->getUri()
45
+ ]);
46
+ })->stop();
47
+
48
// We have jobs that will run into max attempts, don't write them to log
49
$exceptions->dontReport(\Illuminate\Queue\MaxAttemptsExceededException::class);
50
})->create();
0 commit comments