centralize logging initialization

so it can be shared across modules
This commit is contained in:
Min RK
2018-08-31 12:00:42 +02:00
parent 204442d370
commit 37ad207be9
3 changed files with 25 additions and 12 deletions

19
tljh/log.py Normal file
View File

@@ -0,0 +1,19 @@
"""Setup tljh logging"""
import os
import logging
from .config import INSTALL_PREFIX
def init_logging():
"""Setup default tljh logger"""
logger = logging.getLogger("tljh")
os.makedirs(INSTALL_PREFIX, exist_ok=True)
file_logger = logging.FileHandler(os.path.join(INSTALL_PREFIX, "installer.log"))
file_logger.setFormatter(logging.Formatter("%(asctime)s %(message)s"))
logger.addHandler(file_logger)
stderr_logger = logging.StreamHandler()
stderr_logger.setFormatter(logging.Formatter("%(message)s"))
logger.addHandler(stderr_logger)
logger.setLevel(logging.INFO)