10 lines
395 B
TypeScript
Raw Normal View History

2026-05-31 13:21:13 +02:00
export type LogLevel = 'trace' | 'debug' | 'info' | 'warn' | 'error' | 'fatal';
export declare const LEVELS: Record<LogLevel, number>;
export declare const log: Record<keyof typeof LEVELS, typeof console.log>;
/**
* Sets a log level
*
* @param level - The level to set the logging to. Default is `"fatal"`
*/
export declare const setLogLevel: (level?: keyof typeof LEVELS | number) => void;