Hi,
I have sentry.io up and running in my Angular project. I followed the documentation and the created issues all look fine. With one exception: I don’t have a stack trace.
Is it because I am just having the Developer Plan or is it a configuration issue?
public setup(): void {
Sentry.init({
release: environment.version,
attachStacktrace: true,
debug: !environment.production,
environment: environment.production ? 'PRODUCTION' : 'DEV',
dsn: environment.sentry
});
}
public captureException(error: any): string {
return Sentry.captureException(error.originalError || error);
}