using std logging instead of loguru

This commit is contained in:
Mose Mueller
2023-10-18 15:41:46 +02:00
parent 20a035afe8
commit af9e44e373
5 changed files with 9 additions and 4 deletions

View File

@@ -1,9 +1,12 @@
import logging
from pathlib import Path
from typing import Optional, TypeVar
from confz import BaseConfig, FileSource
from loguru import logger
logger = logging.getLogger(__name__)
T = TypeVar("T", bound=BaseConfig)