24 lines
452 B
JavaScript
24 lines
452 B
JavaScript
/**
|
|
* @fileoverview Public exports for the runtime debug facility.
|
|
* @module debug
|
|
*/
|
|
|
|
export {
|
|
loadDebugConfig,
|
|
parseDebugVeraeEnv,
|
|
parseLevel,
|
|
shouldLog,
|
|
LEVEL_ORDER,
|
|
} from './config.js';
|
|
|
|
export { createDebugger, formatLogLine, setDebugTestSink } from './logger.js';
|
|
|
|
export { redact, redactString } from './redact.js';
|
|
|
|
export {
|
|
generateTraceId,
|
|
getTraceId,
|
|
getTraceContext,
|
|
withTrace,
|
|
traceMiddleware,
|
|
} from './trace.js';
|