12 lines
292 B
Python
12 lines
292 B
Python
"""Central logging setup — call once in main.py before the app is created."""
|
|
|
|
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",
|
|
)
|