diff --git a/allstarr/wwwroot/index.html b/allstarr/wwwroot/index.html index f01ba26..0f589bf 100644 --- a/allstarr/wwwroot/index.html +++ b/allstarr/wwwroot/index.html @@ -1201,6 +1201,11 @@ const externalPct = spotifyTotal > 0 ? Math.round((externalMatched / spotifyTotal) * 100) : 0; const completionColor = completionPct === 100 ? 'var(--success)' : completionPct >= 80 ? 'var(--accent)' : 'var(--warning)'; + // Debug logging + if (p.name && (localCount > 0 || externalMatched > 0)) { + console.log(`Playlist ${p.name}: total=${spotifyTotal}, local=${localCount} (${localPct}%), external=${externalMatched} (${externalPct}%)`); + } + return `