manual revoce

This commit is contained in:
2025-07-02 20:52:11 +00:00
parent c81f26d940
commit 3112895458

View File

@@ -28,10 +28,10 @@ from data_processor import DataProcessor
# 1. INITIALE KONFIGURATION (wird vor allem anderen ausgeführt)
# ==============================================================================
# Logging sofort über die zentrale Helper-Funktion konfigurieren
# Wichtig: helpers muss vor der Verwendung importiert werden.
from helpers import create_log_filename, initialize_target_schema, alignment_demo, setup_logging
setup_logging(log_level=logging.DEBUG if Config.DEBUG else logging.INFO)
# Logging sofort konfigurieren, damit es für alle importierten Module greift.
LOG_LEVEL = logging.DEBUG if Config.DEBUG else logging.INFO
LOG_FORMAT = '%(asctime)s - %(levelname)-8s - %(name)-25s - %(message)s'
logging.basicConfig(level=LOG_LEVEL, format=LOG_FORMAT, force=True, handlers=[logging.StreamHandler()])
# Haupt-Logger für dieses Skript
logger = logging.getLogger(__name__)