Spaces:
Running on Zero
Running on Zero
File size: 322 Bytes
7f9dfed | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | from __future__ import annotations
import logging
def configure_app_logging() -> None:
"""Configure compact application logging once."""
if logging.getLogger().handlers:
return
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s %(levelname)s %(name)s %(message)s",
)
|