Files
Comfyui-LayerForge/python/__init__.py
Dariusz L d8ebbeea1e Refactor logger setup and path handling
Moved sys.path modification from canvas_node.py to __init__.py for better package management. Improved logger formatting for colored output and enhanced file logging configuration with error handling for log directory creation. Added python/__init__.py to make the 'python' directory a package.
2025-06-28 01:26:33 +02:00

5 lines
95 B
Python

# This file makes the 'python' directory a package.
from . import logger
__all__ = ['logger']