KI-Agent-Backup / config /debug_config.py
Astridkraft's picture
Create config/debug_config.py
99bd026 verified
Raw
History Blame Contribute Delete
563 Bytes
# 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
}