fix(core): Improve safeJoin
usage in console logging integration
#16658
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
resolves #16657
Background
In the
consoleLoggingIntegration
(which sends logs to Sentry from console calls), we use a utility calledsafeJoin
to join together the console args.sentry-javascript/packages/core/src/utils/string.ts
Lines 68 to 94 in b94f652
This utility calls
String(value)
to convert items to a string, which results in objects and arrays being turned into the dreaded[Object Object]
or[Array]
.sentry-javascript/packages/core/src/utils/string.ts
Line 86 in b94f652
A user wrote in with feedback that this was annoying, and I agree!
Solution
Instead of using
String(value)
I chose to create a new helper that usesJSON.stringify(normalize(X))
, which should result in the entire object or array being properly shown. This required me to grabnormalizeDepth
andnormalizeMaxBreadth
from the client options, but that feels fine because it's easily explainable to users.I added tests to validate this.
Next Steps
We should really refactor our overall
safeJoin
usage. This should be safe in breadcrumbs, but will be a breaking change incapture-console
as it'll cause issue grouping changes if console calls are being captured as messages/errors.