mirror of
https://github.com/Azornes/Comfyui-LayerForge.git
synced 2026-03-21 20:52:12 -03:00
6 lines
186 B
TypeScript
6 lines
186 B
TypeScript
import { LogLevel } from "./logger";
|
|
|
|
// Log level for development.
|
|
// Possible values: 'DEBUG', 'INFO', 'WARN', 'ERROR', 'NONE'
|
|
export const LOG_LEVEL: keyof typeof LogLevel = 'DEBUG';
|