debugSummary static method
Log debug summary - consolidated logging for multiple items
Implementation
static void debugSummary(String title, Map<String, dynamic> summary) {
if (!_shouldLog(LogLevel.debug)) return;
final summaryStr = summary.entries
.map((e) => '${e.key}: ${e.value}')
.join(', ');
debug('📊 $title - $summaryStr');
}