From f23f36eaf2d9a4b8d6cf1a6a395c8ae7a8ddfbf1 Mon Sep 17 00:00:00 2001 From: fred Date: Wed, 12 Dec 2018 14:45:39 -0500 Subject: [PATCH] Use tljh logger in installer --- tljh/installer.py | 2 +- tljh/migrator.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tljh/installer.py b/tljh/installer.py index bed0c3d..9b97dd8 100644 --- a/tljh/installer.py +++ b/tljh/installer.py @@ -35,7 +35,7 @@ from .yaml import yaml HERE = os.path.abspath(os.path.dirname(__file__)) -logger = logging.getLogger(__name__) +logger = logging.getLogger("tljh") def ensure_node(): """ diff --git a/tljh/migrator.py b/tljh/migrator.py index a301c93..75336ad 100644 --- a/tljh/migrator.py +++ b/tljh/migrator.py @@ -12,7 +12,7 @@ from tljh.config import ( ) -logger = logging.getLogger(__name__) +logger = logging.getLogger("tljh") def migrate_file(old_path, new_path):