Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
25 lines
802 B
Plaintext
25 lines
802 B
Plaintext
import { debug as coreDebug } from '@sentry/core';
|
|
interface LoggerConfig {
|
|
captureExceptions: boolean;
|
|
traceInternals: boolean;
|
|
}
|
|
type CoreDebugLogger = typeof coreDebug;
|
|
interface ReplayDebugLogger extends CoreDebugLogger {
|
|
/**
|
|
* Calls `debug.log` but saves breadcrumb in the next tick due to race
|
|
* conditions before replay is initialized.
|
|
*/
|
|
infoTick: CoreDebugLogger['log'];
|
|
/**
|
|
* Captures exceptions (`Error`) if "capture internal exceptions" is enabled
|
|
*/
|
|
exception: CoreDebugLogger['error'];
|
|
/**
|
|
* Configures the logger with additional debugging behavior
|
|
*/
|
|
setConfig(config: Partial<LoggerConfig>): void;
|
|
}
|
|
export declare const debug: ReplayDebugLogger;
|
|
export {};
|
|
//# sourceMappingURL=logger.d.ts.map
|