We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6c0069 commit b3593cbCopy full SHA for b3593cb
packages/integrations/src/extraerrordata.ts
@@ -105,9 +105,6 @@ export class ExtraErrorData implements Integration {
105
const serializedError = error.toJSON() as Record<string, unknown>;
106
107
for (const key of Object.keys(serializedError)) {
108
- if (nativeKeys.indexOf(key) !== -1) {
109
- continue;
110
- }
111
const value = serializedError[key];
112
extraErrorInfo[key] = isError(value) ? (value as Error).toString() : value;
113
}
0 commit comments