Sentry with Sapphire?
Sapphire handles all errors for me so they don't go into Sentry, what should I do?
Solution:Jump to solution
You should capture the error manually, for example in a listener, you can do:```ts
// Other imports
import { captureException } from '@sentry/node';
export class UserListener extends Listener<typeof Events.ListenerError> {...
1 Reply
Solution
You should capture the error manually, for example in a listener, you can do: