From a1ab06dcfccef90192b90910aecdddbc505eca00 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Tue, 26 Oct 2021 22:20:52 -0400 Subject: sentry stuff --- src/listeners/other/promiseRejection.ts | 5 +++++ src/listeners/other/uncaughtException.ts | 5 +++++ src/listeners/other/warning.ts | 5 +++++ 3 files changed, 15 insertions(+) (limited to 'src/listeners/other') diff --git a/src/listeners/other/promiseRejection.ts b/src/listeners/other/promiseRejection.ts index 45e647e..ad16773 100644 --- a/src/listeners/other/promiseRejection.ts +++ b/src/listeners/other/promiseRejection.ts @@ -1,4 +1,5 @@ import { BushListener } from '@lib'; +import { Severity } from '@sentry/node'; import CommandErrorListener from '../commands/commandError'; export default class PromiseRejectionListener extends BushListener { @@ -10,6 +11,10 @@ export default class PromiseRejectionListener extends BushListener { } public override async exec(error: Error) { + client.sentry.captureException(error, { + level: Severity.Error + }); + void client.console.error( 'promiseRejection', `An unhanded promise rejection occurred:\n${typeof error == 'object' ? error.stack : error}`, diff --git a/src/listeners/other/uncaughtException.ts b/src/listeners/other/uncaughtException.ts index 8eb4294..0f8c17c 100644 --- a/src/listeners/other/uncaughtException.ts +++ b/src/listeners/other/uncaughtException.ts @@ -1,4 +1,5 @@ import { BushListener } from '@lib'; +import { Severity } from '@sentry/node'; import CommandErrorListener from '../commands/commandError'; export default class UncaughtExceptionListener extends BushListener { @@ -10,6 +11,10 @@ export default class UncaughtExceptionListener extends BushListener { } public override async exec(error: Error) { + client.sentry.captureException(error, { + level: Severity.Error + }); + void client.console.error( 'uncaughtException', `An uncaught exception occurred:\n${typeof error == 'object' ? error.stack : error}`, diff --git a/src/listeners/other/warning.ts b/src/listeners/other/warning.ts index 51f67ba..bf1488f 100644 --- a/src/listeners/other/warning.ts +++ b/src/listeners/other/warning.ts @@ -1,4 +1,5 @@ import { BushListener } from '@lib'; +import { Severity } from '@sentry/node'; import CommandErrorListener from '../commands/commandError'; export default class WarningListener extends BushListener { @@ -10,6 +11,10 @@ export default class WarningListener extends BushListener { } public override async exec(error: Error) { + client.sentry.captureException(error, { + level: Severity.Warning + }); + void client.console.warn('warning', `A warning occurred:\n${typeof error == 'object' ? error.stack : error}`, false); void client.console.channelError({ embeds: [ -- cgit