Closed
Description
- Review the documentation: https://docs.sentry.io/
- Search for existing issues: https://github.com/getsentry/sentry-javascript/issues
- Use the latest release: https://github.com/getsentry/sentry-javascript/releases
- Provide a link to the affected event from your Sentry account
Package + Version
-
@sentry/browser
-
@sentry/node
-
raven-js
-
raven-node
(raven for node) - other:
Version:
6.17.7
Description
I believe this is related to #4533.
When opening the dev console on previous sentry version and writing a simple log, the message is written as a string:
console.log('hello world')
[Log] hello world
< undefined
With 6.17.7, message is written as an Array.
console.log('hello world');
[Log] ["hello world"]
< undefined
I see this behavior in latest Safari, Firefox, and Chrome.