Made groups caching log only visible on debug

This commit is contained in:
Profitroll 2023-01-09 14:34:33 +01:00
parent 717d636497
commit bdc775dcbd
1 changed files with 4 additions and 2 deletions

View File

@ -24,7 +24,8 @@ if configGet("enabled", "scheduler", "cache_members"):
list_of_users.append(member.user.id)
makedirs(configGet("cache", "locations"), exist_ok=True)
jsonSave(list_of_users, path.join(configGet("cache", "locations"), "group_members"))
logWrite("User group caching performed", debug=True)
if configGet("debug") is True:
logWrite("User group caching performed", debug=True)
if configGet("enabled", "scheduler", "cache_admins"):
@scheduler.scheduled_job(trigger="interval", seconds=configGet("interval", "scheduler", "cache_admins"))
@ -34,7 +35,8 @@ if configGet("enabled", "scheduler", "cache_admins"):
list_of_users.append(member.user.id)
makedirs(configGet("cache", "locations"), exist_ok=True)
jsonSave(list_of_users, path.join(configGet("cache", "locations"), "admins"))
logWrite("Admin group caching performed", debug=True)
if configGet("debug") is True:
logWrite("Admin group caching performed", debug=True)
# Cache the avatars of group members
if configGet("enabled", "scheduler", "cache_avatars"):