feat: replace loguru with logging
This commit is contained in:
parent
cced09f1ac
commit
c6940db289
34 changed files with 138 additions and 245 deletions
|
@ -1,8 +1,8 @@
|
|||
import logging
|
||||
from enum import Enum
|
||||
from queue import Queue
|
||||
from typing import Any, Dict, Protocol
|
||||
|
||||
from loguru import logger
|
||||
from pydantic import BaseModel
|
||||
|
||||
from .analyze_cuepoint import analyze_cuepoint, analyze_duration
|
||||
|
@ -11,6 +11,8 @@ from .analyze_playability import UnplayableFileError, analyze_playability
|
|||
from .analyze_replaygain import analyze_replaygain
|
||||
from .organise_file import organise_file
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class Step(Protocol):
|
||||
@staticmethod
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue