From cb4be35f13cc02c66927e091e501100fa99f774b Mon Sep 17 00:00:00 2001 From: koko210Serve Date: Fri, 15 May 2026 13:58:39 +0300 Subject: [PATCH] fix: register 'consolidation' component in logger whitelist The new consolidation_scheduler.py uses get_logger('consolidation') but the component wasn't registered in COMPONENTS dict, causing on_ready to crash with a ValueError. --- bot/utils/logger.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bot/utils/logger.py b/bot/utils/logger.py index 7f3a0b6..44dad29 100644 --- a/bot/utils/logger.py +++ b/bot/utils/logger.py @@ -52,6 +52,7 @@ COMPONENTS = { 'mood': 'Mood system and state changes', 'dm': 'Direct message handling', 'scheduled': 'Scheduled tasks and cron jobs', + 'consolidation': 'Memory consolidation scheduler', 'gpu': 'GPU routing and model management', 'media': 'Media processing (audio, video, images)', 'server': 'Server management and configuration',