import * as util from 'node:util'; import { defineIntegration, getClient, addBreadcrumb } from '@sentry/core'; import { addConsoleInstrumentationHandler, severityLevelFromString, truncate } from '@sentry/utils'; const INTEGRATION_NAME = 'Console'; /** * Capture console logs as breadcrumbs. */ const consoleIntegration = defineIntegration(() => { return { name: INTEGRATION_NAME, setup(client) { addConsoleInstrumentationHandler(({ args, level }) => { if (getClient() !== client) { return; } addBreadcrumb( { category: 'console', level: severityLevelFromString(level), message: truncate(util.format.apply(undefined, args), 2048), // 2KB }, { input: [...args], level, }, ); }); }, }; }); export { consoleIntegration }; //# sourceMappingURL=console.js.map