cleanup logging

This commit is contained in:
Vladimir Mandic
2023-09-08 13:29:33 -04:00
parent f36c1eb476
commit 29d88cf557
6 changed files with 10 additions and 11 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ def update_extension_list():
try:
with open(os.path.join(paths.script_path, "html", "extensions.json"), "r", encoding="utf-8") as f:
extensions_list = json.loads(f.read())
shared.log.debug(f'Extensions list loaded: {os.path.join(paths.script_path, "html", "extensions.json")}')
# shared.log.debug(f'Extensions list loaded: {os.path.join(paths.script_path, "html", "extensions.json")}')
except Exception:
shared.log.debug(f'Extensions list failed to load: {os.path.join(paths.script_path, "html", "extensions.json")}')
found = []