File size: 152 Bytes
fac0856
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
"""
Logging configuration.
"""
from __future__ import annotations

import logging

__all__ = [
    "logger",
]

logger = logging.getLogger(__package__)