We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0c66c5 commit 0a49d94Copy full SHA for 0a49d94
apps/backend/app/core/exceptions/handler.ts
@@ -1,4 +1,3 @@
1
-import * as Sentry from '@sentry/node'
2
import app from '@adonisjs/core/services/app'
3
import { HttpContext, ExceptionHandler } from '@adonisjs/core/http'
4
@@ -24,7 +23,6 @@ export default class HttpExceptionHandler extends ExceptionHandler {
24
23
* @note You should not attempt to send a response from this method.
25
*/
26
async report(error: unknown, ctx: HttpContext) {
27
- Sentry.captureException(error)
28
return super.report(error, ctx)
29
}
30
0 commit comments