-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
Description
Is there an existing issue for this?
- I have checked for existing issues https://github.com/getsentry/sentry-javascript/issues
- I have reviewed the documentation https://docs.sentry.io/
- I am using the latest SDK release https://github.com/getsentry/sentry-javascript/releases
How do you use Sentry?
Sentry Saas (sentry.io)
Which SDK are you using?
@sentry/nextjs
SDK Version
8.33.1
Framework Version
Next.js 14.2.15
Link to Sentry event
Reproduction Example/SDK Setup
Sentry.init({
environment: NEXT_PUBLIC_DEPLOYMENT_ENV,
dsn: "xxxxxxx",
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1,
// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,
replaysOnErrorSampleRate: 1.0,
// This sets the sample rate to be 10%. You may want this to be 100% while
// in development and sample at a lower rate in production
replaysSessionSampleRate: 0.1,
// You can remove this option if you're not planning to use the Sentry Session Replay feature:
integrations: [
Sentry.replayIntegration({
// Additional Replay configuration goes in here, for example:
maskAllText: false,
blockAllMedia: false,
networkDetailAllowUrls: [NEXT_PUBLIC_BASE_URL.toString()],
}),
],
ignoreErrors: [
// Authentication errors are expected and handled by the frontend
/Access denied! You need to be authenticated to perform this action!/,
/Access denied! You don't have permission for this action!/,
],
});
Steps to Reproduce
Can't really tell. I'm getting this "Method not found" error and the stack trace only shows a call to this sentryWrapped logic, there's no mention of my own code anywhere.
Expected Result
I would expect Sentry to tell me what's causing this error so I can debug it.
Actual Result
No useful information is logged. It seems to happen only on Chrome Mobile but without additional information I can't do anything about it.
CurtisHumphrey, thamsy and dkocich
Metadata
Metadata
Assignees
Labels
Projects
Status
No status