@sentry/core
Version:
Base implementation for all Sentry JavaScript SDKs
17 lines (15 loc) • 294 B
JavaScript
/**
* Maps a log severity level to a log severity number.
*
* @see LogSeverityLevel
*/
const SEVERITY_TEXT_TO_SEVERITY_NUMBER = {
trace: 1,
debug: 5,
info: 9,
warn: 13,
error: 17,
fatal: 21,
};
export { SEVERITY_TEXT_TO_SEVERITY_NUMBER };
//# sourceMappingURL=constants.js.map