pferd/PFERD/__init__.py

38 lines
897 B
Python
Raw Normal View History

2020-04-20 19:27:26 +02:00
# pylint: disable=invalid-name
2020-04-20 17:15:47 +02:00
"""
This module exports only what you need for a basic configuration. If you want a
more complex configuration, you need to import the other submodules manually.
"""
2019-04-25 21:41:26 +02:00
import logging
2020-04-23 11:44:13 +02:00
from .pferd import Pferd
2019-04-25 21:41:26 +02:00
STYLE = "{"
FORMAT = "[{levelname:<7}] {message}"
DATE_FORMAT = "%F %T"
FORMATTER = logging.Formatter(
2020-04-20 12:08:52 +02:00
fmt=FORMAT,
datefmt=DATE_FORMAT,
style=STYLE,
2019-04-25 21:41:26 +02:00
)
2020-04-20 12:08:52 +02:00
2020-04-20 03:54:47 +02:00
def enable_logging(name: str = "PFERD", level: int = logging.INFO) -> None:
2020-04-20 17:15:47 +02:00
"""
Enable and configure logging via the logging module.
"""
2019-04-25 21:41:26 +02:00
handler = logging.StreamHandler()
handler.setFormatter(FORMATTER)
logger = logging.getLogger(name)
logger.setLevel(level)
logger.addHandler(handler)
# This should be logged by our own handler, and not the root logger's
# default handler, so we don't pass it on to the root logger.
logger.propagate = False