Files
klz-cables.com/.pnpm-store/v10/files/8a/19b6843a223d1782fcddddaf612453f4588a728c49f869247aebb2276fe5e9a34b442ade436356e55647c1200c18e634357abae7671c3b77ed30750bc55277
Marc Mintel 5397309103
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
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

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