diff --git a/packages/core/src/baseclient.ts b/packages/core/src/baseclient.ts index 89c133116c3b..b7fef7f2164f 100644 --- a/packages/core/src/baseclient.ts +++ b/packages/core/src/baseclient.ts @@ -373,7 +373,10 @@ export abstract class BaseClient implement if (evt) { // TODO this is more of the hack trying to solve https://github.com/getsentry/sentry-javascript/issues/2809 // it is only attached as extra data to the event if the event somehow skips being normalized - evt.sdkProcessingMetadata = { ...evt.sdkProcessingMetadata, normalizeDepth: normalize(normalizeDepth) }; + evt.sdkProcessingMetadata = { + ...evt.sdkProcessingMetadata, + normalizeDepth: `${normalize(normalizeDepth)} (${typeof normalizeDepth})`, + }; } if (typeof normalizeDepth === 'number' && normalizeDepth > 0) { return this._normalizeEvent(evt, normalizeDepth, normalizeMaxBreadth);