From 49225bccef2ce334a35f52f7b8f6f70b48115459 Mon Sep 17 00:00:00 2001 From: Nuvole Date: Sun, 25 May 2025 20:14:43 +0800 Subject: [PATCH] fix: log path --- joj3_config_generator/models/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/joj3_config_generator/models/const.py b/joj3_config_generator/models/const.py index 17ce2ac..b660c30 100644 --- a/joj3_config_generator/models/const.py +++ b/joj3_config_generator/models/const.py @@ -12,6 +12,6 @@ DEFAULT_PROC_LIMIT = 50 JOJ3_CONFIG_ROOT = Path("/home/tt/.config/joj") TEAPOT_CONFIG_ROOT = Path("/home/tt/.config/teapot") CACHE_ROOT = Path("/home/tt/.cache") -JOJ3_LOG_PATH = CACHE_ROOT / "joj3/joj3.log" +JOJ3_LOG_PATH = CACHE_ROOT / "joj3" / "joj3.log" TEAPOT_LOG_PATH = CACHE_ROOT / "joint-teapot-debug.log" ACTOR_CSV_PATH = JOJ3_CONFIG_ROOT / "students.csv"