adjust log levels

This commit is contained in:
2025-07-15 14:20:28 +02:00
parent b9c098cde3
commit 611563fe5b

View File

@ -71,11 +71,11 @@ export class SpotifyPlaylistAdder extends OauthPlaylistAdder implements Playlist
}
if (!SPOTIFY_PLAYLIST_ID || SPOTIFY_PLAYLIST_ID === 'CHANGE_ME') {
this.logger.debug('no spotify playlist ID configured');
this.logger.info('no spotify playlist ID configured');
return;
}
if (!song.spotifyUri) {
this.logger.info('Skip adding song to spotify playlist, no Uri', song);
this.logger.debug('Skip adding song to spotify playlist, no Uri', song);
return;
}