diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-10-26 20:07:19 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-10-26 20:07:19 -0400 |
commit | ed59b7f1827ab93573b079144c3eeaa01ce40492 (patch) | |
tree | 7ceac6d61a8a25586ab9bbaf7acfbade91c97132 /src/listeners/other | |
parent | c0a81b014a56e4d44c826f78391a930361aab122 (diff) | |
download | tanzanite-ed59b7f1827ab93573b079144c3eeaa01ce40492.tar.gz tanzanite-ed59b7f1827ab93573b079144c3eeaa01ce40492.tar.bz2 tanzanite-ed59b7f1827ab93573b079144c3eeaa01ce40492.zip |
clean up, bug fixes
Diffstat (limited to 'src/listeners/other')
-rw-r--r-- | src/listeners/other/consoleListener.ts | 2 | ||||
-rw-r--r-- | src/listeners/other/exit.ts | 2 | ||||
-rw-r--r-- | src/listeners/other/promiseRejection.ts | 2 | ||||
-rw-r--r-- | src/listeners/other/uncaughtException.ts | 2 | ||||
-rw-r--r-- | src/listeners/other/warning.ts | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/src/listeners/other/consoleListener.ts b/src/listeners/other/consoleListener.ts index 6092f05..fab9119 100644 --- a/src/listeners/other/consoleListener.ts +++ b/src/listeners/other/consoleListener.ts @@ -10,7 +10,7 @@ export default class ConsoleListener extends BushListener { }); } - public override async exec(line: string): Promise<void> { + public override async exec(line: string) { if (line.startsWith('eval ') || line.startsWith('ev ')) { /* eslint-disable @typescript-eslint/no-unused-vars */ const sh = promisify(exec), diff --git a/src/listeners/other/exit.ts b/src/listeners/other/exit.ts index e860eda..4ea6068 100644 --- a/src/listeners/other/exit.ts +++ b/src/listeners/other/exit.ts @@ -8,7 +8,7 @@ export default class ExitListener extends BushListener { }); } - public override async exec(code: number): Promise<void> { + public override async exec(code: number) { await client.console.error('processExit', `Process ended with code <<${code}>>.`); } } diff --git a/src/listeners/other/promiseRejection.ts b/src/listeners/other/promiseRejection.ts index dc21c3f..45e647e 100644 --- a/src/listeners/other/promiseRejection.ts +++ b/src/listeners/other/promiseRejection.ts @@ -9,7 +9,7 @@ export default class PromiseRejectionListener extends BushListener { }); } - public override async exec(error: Error): Promise<void> { + public override async exec(error: 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 4ba47bd..8eb4294 100644 --- a/src/listeners/other/uncaughtException.ts +++ b/src/listeners/other/uncaughtException.ts @@ -9,7 +9,7 @@ export default class UncaughtExceptionListener extends BushListener { }); } - public override async exec(error: Error): Promise<void> { + public override async exec(error: 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 d85e9e3..51f67ba 100644 --- a/src/listeners/other/warning.ts +++ b/src/listeners/other/warning.ts @@ -9,7 +9,7 @@ export default class WarningListener extends BushListener { }); } - public override async exec(error: Error): Promise<void> { + public override async exec(error: Error) { void client.console.warn('warning', `A warning occurred:\n${typeof error == 'object' ? error.stack : error}`, false); void client.console.channelError({ embeds: [ |