logHighlightingFlow static method
Log the entire highlighting flow
Implementation
static void logHighlightingFlow(String stage, Map<String, dynamic> data) {
final timestamp = DateTime.now().toIso8601String();
debugPrint('═══════════════════════════════════════════════════════');
debugPrint('🔍 HIGHLIGHTING DEBUG - $stage @ $timestamp');
debugPrint('═══════════════════════════════════════════════════════');
data.forEach((key, value) {
debugPrint(' $key: $value');
});
debugPrint('───────────────────────────────────────────────────────\n');
}