Description
Description
In #16657 we got some user feedback that our consoleLoggingIntegration
was sending logs with [Object Object]
and [Array]
. This was because of how we serialize with the safeJoin
utility, since it uses String(value)
.
sentry-javascript/packages/core/src/utils/string.ts
Lines 68 to 94 in b94f652
This was fixed in #16658 by removing the usage of the safeJoin
utility.
We should re-evaluate safeJoin
usage across the SDKs and see if we want to replace it with JSON.stringify(normalize)
instead.