mirror of
https://github.com/Azornes/Comfyui-LayerForge.git
synced 2026-03-21 12:52:10 -03:00
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.
5 lines
95 B
Python
5 lines
95 B
Python
# This file makes the 'python' directory a package.
|
|
from . import logger
|
|
|
|
__all__ = ['logger']
|