🐛 修复了日志文件夹位置不正确的问题

This commit is contained in:
Nanaloveyuki
2025-07-29 17:33:38 +08:00
parent 80e4a4d02f
commit d1422513e9
3 changed files with 78 additions and 2 deletions

15
tests/t-repeat.py Normal file
View File

@ -0,0 +1,15 @@
import sys
from pathlib import Path
project_root = Path(__file__).parent.parent
sys.path.append(str(project_root))
from src.logiliteal import Logger
log = Logger()
i = 0
while i < 20000:
log.info(f"**md** | <#ff0000>测试--重--复~~日志~~: {i}")
i += 1