debugSummary static method

void debugSummary(
  1. String title,
  2. Map<String, dynamic> summary
)

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');
}