All console errors show generated from @sentry/browser/esm/integrations/breadcrumbs.js:81
See original GitHub issue- [ x] Review the documentation: https://docs.sentry.io/
- [ x] Search for existing issues: https://github.com/getsentry/sentry-javascript/issues
- [x ] Use the latest release: https://github.com/getsentry/sentry-javascript/releases
- Provide a link to the affected event from your Sentry account
Package + Version
- [ ^5.6.2]
@sentry/browser
- [^5.6.2 ]
@sentry/node
-
raven-js
-
raven-node
(raven for node) - other:
Description
Chrome dev console shows all output as from @sentry/browser/esm/integrations/breadcrumbs.js:81
- I’m using the @sentry/webpack-plugin
but that’s only loaded in production. Curious if this is normal, and if so, how to get the line of code which triggered the log instead.
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (2 by maintainers)
Top Results From Across the Web
Showing console errors and alerts in a div inside the page
If any code crashes with an uncaught error, in might not show up in the div. One solution could be, if possible, to...
Read more >Fix JavaScript errors that are reported in the Console
To display two created error messages in the Console: ... Right-click anywhere in the webpage and then select Inspect. Or, press F12 ....
Read more >Capturing JavaScript Errors - Sentry
The Problem. You have a single page JavaScript application, and unlike your API server, the client-side application doesn't generate error logs.
Read more >Using Your Browser to Diagnose JavaScript Errors
This guide will show you how to diagnose JavaScript issues in different browsers. Step 1: Try Another Browser. To make sure that this...
Read more >Where are JavaScript Errors Logged? - Rollbar
Rather than dealing with log files, rotation, permissions, and all the other fun things that come with server-side languages, JavaScript errors ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
That did it, thank you for your help!
@jgentes
Breadcrumbs
are platform-specific integrations, whereExtraErrorData
is generic for any JS plaform, see: https://docs.sentry.io/platforms/javascript/#sdk-integrations vs. https://docs.sentry.io/platforms/javascript/#pluggable-integrationsThis means that
ExtraErrorData
lives inside@sentry/integrations
and is correctly required by you in the example above, butBreadcrumbs
lives in the SDK itself underSentry.Integrations.Breadcrumbs
.