feat: replace loguru with logging
This commit is contained in:
parent
cced09f1ac
commit
c6940db289
34 changed files with 138 additions and 245 deletions
|
@ -1,4 +1,5 @@
|
|||
import hashlib
|
||||
import logging
|
||||
import os
|
||||
import stat
|
||||
import time
|
||||
|
@ -7,9 +8,10 @@ from threading import Thread
|
|||
from typing import Any, Dict
|
||||
|
||||
from libretime_api_client.v2 import ApiClient
|
||||
from loguru import logger
|
||||
from requests.exceptions import ConnectionError, HTTPError, Timeout
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class PypoFile(Thread):
|
||||
name = "file"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue