12 lines
298 B
Python
12 lines
298 B
Python
"""Zentrales Logging-Setup — einmal in main.py aufrufen, bevor die App entsteht."""
|
|
|
|
import logging
|
|
import os
|
|
|
|
|
|
def setup_logging() -> None:
|
|
logging.basicConfig(
|
|
level=os.environ.get("LOG_LEVEL", "INFO").upper(),
|
|
format="%(asctime)s %(levelname)s %(name)s %(message)s",
|
|
)
|