From 784df7824243a746d12e1e6aa0bad6468616619f Mon Sep 17 00:00:00 2001 From: Francesco Gringl-Novy Date: Wed, 27 May 2026 08:29:17 +0200 Subject: [PATCH] ref(node): Stop custom-handling normalization of Domain/DomainEmitter --- packages/core/src/utils/normalize.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/packages/core/src/utils/normalize.ts b/packages/core/src/utils/normalize.ts index 8b012a8563cb..853afc7df753 100644 --- a/packages/core/src/utils/normalize.ts +++ b/packages/core/src/utils/normalize.ts @@ -187,14 +187,6 @@ function stringifyValue( value: Exclude, ): string { try { - if (key === 'domain' && value && typeof value === 'object' && (value as { _events: unknown })._events) { - return '[Domain]'; - } - - if (key === 'domainEmitter') { - return '[DomainEmitter]'; - } - // It's safe to use `global`, `window`, and `document` here in this manner, as we are asserting using `typeof` first // which won't throw if they are not present.