From f4301f2675d058777657837d46752eaca414f47e Mon Sep 17 00:00:00 2001 From: ChuckBuilds Date: Thu, 16 Jul 2026 16:34:58 -0400 Subject: [PATCH] chore(display): add missing [DisplayController] prefix to the reconcile-complete log Re-verifying the full CodeRabbit findings list against current code surfaced one still-open item: the nitpick asked for the prefix on BOTH rotation-related log lines, but only "Applied plugin rotation order" got it in the earlier pass - "Plugin reconcile complete" was missed. No message/argument/level change, matching the finding's own scope. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01KEZK1P1Q1fu5pcuVrkrCFZ --- src/display_controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/display_controller.py b/src/display_controller.py index a4834102..5a341902 100644 --- a/src/display_controller.py +++ b/src/display_controller.py @@ -2851,7 +2851,7 @@ class DisplayController: # configured rotation slot before resyncing the index. self._apply_plugin_rotation_order() self._resync_mode_index_after_change(previous_mode) - logger.info("Plugin reconcile complete: +%s -%s (%d modes)", + logger.info("[DisplayController] Plugin reconcile complete: +%s -%s (%d modes)", sorted(to_add), sorted(to_remove), len(self.available_modes)) return True