14 lines
153 B
Python
14 lines
153 B
Python
"""
|
|
Logging configuration.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
|
|
__all__ = [
|
|
"logger",
|
|
]
|
|
|
|
logger = logging.getLogger(__package__)
|