Spaces:
Sleeping
Sleeping
File size: 153 Bytes
2d876d1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
"""
Logging configuration.
"""
from __future__ import annotations
import logging
__all__ = [
"logger",
]
logger = logging.getLogger(__package__)
|