mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
8 lines
124 B
Python
Vendored
8 lines
124 B
Python
Vendored
"""Logging configuration."""
|
|
|
|
import logging
|
|
|
|
|
|
# Name the logger after the package.
|
|
logger = logging.getLogger(__package__)
|