From 7345549c69ed7f3ef451781a82a5780a6d3c90c0 Mon Sep 17 00:00:00 2001 From: wlinator Date: Mon, 25 Mar 2024 13:55:12 +0100 Subject: [PATCH] Add module info JsonCache logging --- config/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/parser.py b/config/parser.py index f02ce3e..74b84a5 100644 --- a/config/parser.py +++ b/config/parser.py @@ -13,6 +13,6 @@ class JsonCache: if path not in JsonCache._cache: with open(f"config/JSON/{path}.json", 'r') as file: JsonCache._cache[path] = json.load(file) - logs.info(f"{path}.json was loaded and cached.") + logs.info(f"[JsonParser] {path}.json was loaded and cached.") return JsonCache._cache[path]