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 e6427ca commit eb764f1Copy full SHA for eb764f1
1 file changed
packages/node-core/src/integrations/console.ts
@@ -39,7 +39,14 @@ export const consoleIntegration = defineIntegration((options: Partial<ConsoleInt
39
}
40
41
// Delegate breadcrumb handling to the core console integration.
42
- const core = coreConsoleIntegration(options);
+ const core = coreConsoleIntegration({
43
+ ...options,
44
+ filter: [
45
+ ...(options.filter || []),
46
+ // Deprecation on Node 26 for module.require(), which is used by IITM
47
+ '(node:4075) [DEP0205] DeprecationWarning',
48
+ ],
49
+ });
50
core.setup?.(client);
51
},
52
};
0 commit comments