S1005403_RisCC/target_simulator/config.py
2025-10-01 14:17:56 +02:00

21 lines
483 B
Python

# target_simulator/config.py
"""
Global configuration settings for the Target Simulator application.
"""
# Basic configuration for the logger
LOGGING_CONFIG = {
"format": "%(asctime)s [%(levelname)-8s] %(name)-25s : %(message)s",
"date_format": "%H:%M:%S",
"default_root_level": "DEBUG",
"enable_console": True,
"colors": {
"DEBUG": "gray",
"INFO": "black",
"WARNING": "orange",
"ERROR": "red",
"CRITICAL": "red"
}
}