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.
This commit is contained in:
2026-05-15 13:58:39 +03:00
parent f3c4a8fe5a
commit cb4be35f13

View File

@@ -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',