Logging: Switch to loguru

Loguru is a flexible logger that allows for easier hooking and imports
into Rich with no problems. Also makes progress bars stick to the
bottom of the terminal window.

Signed-off-by: kingbri <bdashore3@proton.me>
This commit is contained in:
kingbri
2024-03-07 23:20:17 -05:00
committed by Brian Dashore
parent fe0ff240e7
commit 228c227c1e
14 changed files with 110 additions and 119 deletions

View File

@@ -1,11 +1,9 @@
import yaml
import pathlib
from loguru import logger
from common.logger import init_logger
from common.utils import unwrap
logger = init_logger(__name__)
GLOBAL_CONFIG: dict = {}