aboutsummaryrefslogtreecommitdiff
path: root/src/srht_contrib/logging.py
blob: 315bb8940ddb558ed6f813acdc4059b5056a0c1c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
from __future__ import annotations

import logging


def configure_logging() -> None:
    logging.basicConfig(
        level=logging.INFO,
        format="%(asctime)s %(levelname)s [%(name)s] %(message)s",
    )