Move logging into its own file

This commit is contained in:
I-Al-Istannen
2020-04-25 19:59:58 +02:00
parent 80247400a4
commit 8a42a2a396
8 changed files with 157 additions and 117 deletions

View File

@@ -10,7 +10,8 @@ from pathlib import Path, PurePath
from typing import List, Set
from .location import Location
from .utils import PrettyLogger, prompt_yes_no
from .logging import PrettyLogger
from .utils import prompt_yes_no
LOGGER = logging.getLogger(__name__)
PRETTY = PrettyLogger(LOGGER)