diff --git a/allstarr/Services/Spotify/SpotifyApiClient.cs b/allstarr/Services/Spotify/SpotifyApiClient.cs index 0af1dad..dff2f8a 100644 --- a/allstarr/Services/Spotify/SpotifyApiClient.cs +++ b/allstarr/Services/Spotify/SpotifyApiClient.cs @@ -111,7 +111,7 @@ public class SpotifyApiClient : IDisposable return _webAccessToken; } - _logger.LogDebug("Fetching new Spotify web access token using TOTP authentication"); + _logger.LogInformation("Fetching new Spotify web access token using TOTP authentication"); // Fetch TOTP secrets if needed var totpSecret = await GetTotpSecretAsync(cancellationToken); diff --git a/allstarr/Services/Spotify/SpotifyPlaylistFetcher.cs b/allstarr/Services/Spotify/SpotifyPlaylistFetcher.cs index 1c64594..5f6ef34 100644 --- a/allstarr/Services/Spotify/SpotifyPlaylistFetcher.cs +++ b/allstarr/Services/Spotify/SpotifyPlaylistFetcher.cs @@ -211,6 +211,7 @@ public class SpotifyPlaylistFetcher : BackgroundService } // Verify authentication + _logger.LogInformation("Attempting Spotify authentication..."); var (success, userId, displayName) = await _spotifyClient.GetCurrentUserAsync(stoppingToken); if (!success) {