Skip to content

Commit

Permalink
remove not needed debug print of sortname
Browse files Browse the repository at this point in the history
  • Loading branch information
Viperinius committed Sep 8, 2024
1 parent ebae003 commit 601a7a7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Viperinius.Plugin.SpotifyImport/PlaylistSync.cs
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ private async Task FindTracksAndAddToPlaylist(Playlist playlist, ProviderPlaylis
if (Plugin.Instance?.Configuration.EnableVerboseLogging ?? false)
{
_logger.LogDebug(
"> Artist did not match: \"{Name}\" [Jellyfin, {Id}], \"{Name}\" [Provider]",
"> Artist did not match: {Name} [Jellyfin, {Id}], {Name} [Provider]",
artist.Name,
artist.Id,
string.Join("#", providerTrackInfo.ArtistNames));
Expand Down Expand Up @@ -419,9 +419,8 @@ private bool CheckAlbumArtist(MusicAlbum album, ProviderTrackInfo providerTrackI
if (Plugin.Instance?.Configuration.EnableVerboseLogging ?? false)
{
_logger.LogDebug(
"> Album did not match: \"{Name}\"/\"{SortName}\" [Jellyfin, {Id}], \"{Name}\" [Provider]",
"> Album did not match: {Name} [Jellyfin, {Id}], {Name} [Provider]",
album.Name,
album.SortName,
album.Id,
providerTrackInfo.AlbumName);
}
Expand Down

0 comments on commit 601a7a7

Please sign in to comment.