-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog.py
24 lines (19 loc) · 881 Bytes
/
log.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# SPDX-License-Identifier: AGPL-3.0-only
# SPDX-FileCopyrightText: 2024 Univention GmbH
import logging
from asgi_correlation_id import CorrelationIdFilter
LOG_FORMAT = "%(asctime)s %(levelname)-5s [%(correlation_id)s] [%(module)s.%(funcName)s:%(lineno)d] %(message)s"
def setup_logging(log_level: str) -> None:
logging.captureWarnings(True)
formatter = logging.Formatter(fmt=LOG_FORMAT)
handler = logging.StreamHandler()
handler.setLevel(log_level)
handler.setFormatter(formatter)
cid_filter = CorrelationIdFilter(uuid_length=10)
handler.addFilter(cid_filter)
logger = logging.getLogger()
logger.setLevel(log_level)
logger.addHandler(handler)
for name in ("uvicorn.access", "uvicorn.error"): # replace the already existing handlers for uvicorn with ours
logger = logging.getLogger(name)
logger.handlers = [handler]