feat: exceptions handlers (#2855)
* feat: wip exception handlers * feat: exception capturer * fix: rename exception-capturer into exception-handler * fix: remove unused variable
This commit is contained in:
@ -0,0 +1,17 @@
|
||||
import { ExceptionHandlerDriverInterface } from 'src/integrations/exception-handler/interfaces';
|
||||
|
||||
export class ExceptionHandlerConsoleDriver
|
||||
implements ExceptionHandlerDriverInterface
|
||||
{
|
||||
captureException(exception: unknown) {
|
||||
console.group('Exception Captured');
|
||||
console.error(exception);
|
||||
console.groupEnd();
|
||||
}
|
||||
|
||||
captureMessage(message: string): void {
|
||||
console.group('Message Captured');
|
||||
console.info(message);
|
||||
console.groupEnd();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user