mirror of
https://github.com/Azornes/Comfyui-LayerForge.git
synced 2026-03-21 20:52:12 -03:00
Added debouncing to the updateOutput function to prevent excessive updates during rapid changes. Large images are now handled using blob URLs for better performance, while small images use data URIs. Also added logic to skip output updates when preview is disabled and improved cleanup of temporary file trackers when nodes are removed.
6 lines
185 B
TypeScript
6 lines
185 B
TypeScript
import { LogLevel } from "./logger";
|
|
|
|
// Log level for development.
|
|
// Possible values: 'DEBUG', 'INFO', 'WARN', 'ERROR', 'NONE'
|
|
export const LOG_LEVEL: keyof typeof LogLevel = 'NONE';
|