logWordMatching static method
Log word matching details
Implementation
static void logWordMatching(
int verseNumber,
List<({String simpleText, bool matched})> wordMatches,
) {
debugPrint('📝 WORD MATCHING for Verse $verseNumber:');
for (int i = 0; i < wordMatches.length; i++) {
final match = wordMatches[i];
final status = match.matched ? '✅' : '❌';
debugPrint(' $status Word ${i + 1}: "${match.simpleText}"');
}
}