chore: 隐藏 target 并调整表述,缩减日志长度

This commit is contained in:
amtoaer
2025-01-25 00:11:22 +08:00
parent 979294bb94
commit 2a98359085
10 changed files with 128 additions and 177 deletions
+2 -2
View File
@@ -38,8 +38,8 @@ impl From<i32> for CollectionType {
impl Display for CollectionType {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
let s = match self {
CollectionType::Series => "视频列表",
CollectionType::Season => "视频合集",
CollectionType::Series => "列表",
CollectionType::Season => "合集",
};
write!(f, "{}", s)
}