This commit is contained in:
parent
4c6a8c80fb
commit
9c5115b9e1
@ -26,13 +26,13 @@ Sentry.init({
|
|||||||
analyticsRoute(app);
|
analyticsRoute(app);
|
||||||
|
|
||||||
// The request handler must be the first middleware on the app
|
// The request handler must be the first middleware on the app
|
||||||
app.use(Sentry.Handlers.requestHandler());
|
app.use(Sentry.Handlers.requestHandler() as express.RequestHandler);
|
||||||
|
|
||||||
// TracingHandler creates a trace for every incoming request
|
// TracingHandler creates a trace for every incoming request
|
||||||
app.use(Sentry.Handlers.tracingHandler());
|
app.use(Sentry.Handlers.tracingHandler());
|
||||||
|
|
||||||
// The error handler must be registered before any other error middleware and after all controllers
|
// The error handler must be registered before any other error middleware and after all controllers
|
||||||
app.use(Sentry.Handlers.errorHandler());
|
app.use(Sentry.Handlers.errorHandler() as express.ErrorRequestHandler);
|
||||||
|
|
||||||
// Optional fallthrough error handler
|
// Optional fallthrough error handler
|
||||||
app.use(function onError(err: any, req: any, res: any, next: any) {
|
app.use(function onError(err: any, req: any, res: any, next: any) {
|
||||||
|
Loading…
Reference in New Issue
Block a user