// UNUSED EXPORTS: MattrzCxLibrary ;// CONCATENATED MODULE: ./node_modules/@sentry/utils/esm/debug-build.js /** * This serves as a build time flag that will be true by default, but false in non-debug builds or if users replace `__SENTRY_DEBUG__` in their generated code. * * ATTENTION: This constant must never cross package boundaries (i.e. be exported) to guarantee that it can be used for tree shaking. */ const debug_build_DEBUG_BUILD = (typeof __SENTRY_DEBUG__ === 'undefined' || __SENTRY_DEBUG__); //# sourceMappingURL=debug-build.js.map // EXTERNAL MODULE: ./node_modules/@sentry/utils/esm/worldwide.js var worldwide = __webpack_require__(1235); ;// CONCATENATED MODULE: ./node_modules/@sentry/utils/esm/logger.js /** Prefix for logging strings */ const PREFIX = 'Sentry Logger '; const CONSOLE_LEVELS = [ 'debug', 'info', 'warn', 'error', 'log', 'assert', 'trace', ] ; /** This may be mutated by the console instrumentation. */ const originalConsoleMethods = {};