mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-09-06 18:54:19 +00:00
11 lines
130 B
Python
11 lines
130 B
Python
"""
|
|
Python logger for the telnet server.
|
|
"""
|
|
import logging
|
|
|
|
logger = logging.getLogger(__package__)
|
|
|
|
__all__ = [
|
|
"logger",
|
|
]
|