Set default log level to DEBUG and add refactoring guide

Changed the default log level from NONE to DEBUG in both canvas_node.py and LoggerUtils.js to improve logging visibility during development. Added js/REFACTORING_GUIDE.md with detailed documentation on the recent Canvas module refactor, outlining architectural changes, migration instructions, and developer notes.
This commit is contained in:
Dariusz L
2025-06-29 04:44:08 +02:00
parent 9dcf38b36d
commit d50a0443c3
3 changed files with 132 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ import os
try:
from python.logger import logger, LogLevel, debug, info, warn, error, exception
logger.set_module_level('canvas_node', LogLevel.NONE)
logger.set_module_level('canvas_node', LogLevel.DEBUG)
logger.configure({
'log_to_file': True,