summaryrefslogtreecommitdiffstats
path: root/src/prompt_toolkit/log.py
blob: 36ceced49e47e510e7a0798af56e6564250d62d5 (plain)
1
2
3
4
5
6
7
8
9
10
"""
Logging configuration.
"""
import logging

__all__ = [
    "logger",
]

logger = logging.getLogger(__package__)