@sentry/core
Version:
Base implementation for all Sentry JavaScript SDKs
89 lines (79 loc) • 2.55 kB
JavaScript
import { addBreadcrumb } from '../breadcrumbs.js';
import { getClient } from '../currentScopes.js';
import { defineIntegration } from '../integration.js';
import { GLOBAL_OBJ } from '../utils-hoist/worldwide.js';
import '../utils-hoist/debug-build.js';
import { CONSOLE_LEVELS } from '../utils-hoist/logger.js';
import { addConsoleInstrumentationHandler } from '../utils-hoist/instrument/console.js';
import { safeJoin } from '../utils-hoist/string.js';
import '../utils-hoist/time.js';
import '../utils-hoist/syncpromise.js';
import { severityLevelFromString } from '../utils-hoist/severity.js';
const INTEGRATION_NAME = 'Console';
/**
* Captures calls to the `console` API as breadcrumbs in Sentry.
*
* By default the integration instruments `console.debug`, `console.info`, `console.warn`, `console.error`,
* `console.log`, `console.trace`, and `console.assert`. You can use the `levels` option to customize which
* levels are captured.
*
* @example
*
* ```js
* Sentry.init({
* integrations: [Sentry.consoleIntegration({ levels: ['error', 'warn'] })],
* });
* ```
*/
const consoleIntegration = defineIntegration((options = {}) => {
const levels = new Set(options.levels || CONSOLE_LEVELS);
return {
name: INTEGRATION_NAME,
setup(client) {
addConsoleInstrumentationHandler(({ args, level }) => {
if (getClient() !== client || !levels.has(level)) {
return;
}
addConsoleBreadcrumb(level, args);
});
},
};
});
/**
* Capture a console breadcrumb.
*
* Exported just for tests.
*/
function addConsoleBreadcrumb(level, args) {
const breadcrumb = {
category: 'console',
data: {
arguments: args,
logger: 'console',
},
level: severityLevelFromString(level),
message: formatConsoleArgs(args),
};
if (level === 'assert') {
if (args[0] === false) {
const assertionArgs = args.slice(1);
breadcrumb.message =
assertionArgs.length > 0 ? `Assertion failed: ${formatConsoleArgs(assertionArgs)}` : 'Assertion failed';
breadcrumb.data.arguments = assertionArgs;
} else {
// Don't capture a breadcrumb for passed assertions
return;
}
}
addBreadcrumb(breadcrumb, {
input: args,
level,
});
}
function formatConsoleArgs(values) {
return 'util' in GLOBAL_OBJ && typeof (GLOBAL_OBJ ).util.format === 'function'
? (GLOBAL_OBJ ).util.format(...values)
: safeJoin(values, ' ');
}
export { addConsoleBreadcrumb, consoleIntegration };
//# sourceMappingURL=console.js.map