日志里输出版本号
This commit is contained in:
parent
13d26be0a2
commit
1c91f39417
@ -32,12 +32,15 @@ from xiaomusic.utils import (
|
|||||||
fuzzyfinder,
|
fuzzyfinder,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
from xiaomusic import (
|
||||||
|
__version__,
|
||||||
|
)
|
||||||
|
|
||||||
EOF = object()
|
EOF = object()
|
||||||
|
|
||||||
PLAY_TYPE_ONE = 0 # 单曲循环
|
PLAY_TYPE_ONE = 0 # 单曲循环
|
||||||
PLAY_TYPE_ALL = 1 # 全部循环
|
PLAY_TYPE_ALL = 1 # 全部循环
|
||||||
|
|
||||||
|
|
||||||
class XiaoMusic:
|
class XiaoMusic:
|
||||||
def __init__(self, config: Config):
|
def __init__(self, config: Config):
|
||||||
self.config = config
|
self.config = config
|
||||||
@ -76,9 +79,13 @@ class XiaoMusic:
|
|||||||
self._stop_timer = None
|
self._stop_timer = None
|
||||||
|
|
||||||
# setup logger
|
# setup logger
|
||||||
|
logging.basicConfig(
|
||||||
|
format=f"[{__version__}]\t%(message)s",
|
||||||
|
datefmt="[%X]",
|
||||||
|
handlers=[RichHandler(rich_tracebacks=True)]
|
||||||
|
)
|
||||||
self.log = logging.getLogger("xiaomusic")
|
self.log = logging.getLogger("xiaomusic")
|
||||||
self.log.setLevel(logging.DEBUG if config.verbose else logging.INFO)
|
self.log.setLevel(logging.DEBUG if config.verbose else logging.INFO)
|
||||||
self.log.addHandler(RichHandler())
|
|
||||||
self.log.debug(config)
|
self.log.debug(config)
|
||||||
|
|
||||||
# 启动时重新生成一次播放列表
|
# 启动时重新生成一次播放列表
|
||||||
|
Loading…
Reference in New Issue
Block a user