# debug_config.py # Steuert das Logging pro Modul # True = Logs an, False = Logs aus DEBUG_MODULES = { "agent.core": True, # Haupt-Agent Logik "agent.memory": True, # MemoryStore (Vektordatenbank) "agent.analyzer": True, "agent.file_patcher": True, # Datei-Operationen "agent.modular_patcher": True, # (noch nicht aktiv) "project_patcher": False, # (noch nicht aktiv) "parser": False, # Log-Parser "app": False, # Haupt-App (meist stumm) "default": False # Fallback für alle anderen }