Skip to content

Commit

Permalink
Added logging of HDR info in TVSeries handler.
Browse files Browse the repository at this point in the history
  • Loading branch information
damienhaynes committed May 19, 2019
1 parent 9e95f6c commit c5fefb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TraktPlugin/TraktHandlers/TVSeries.cs
Expand Up @@ -464,7 +464,7 @@ public void SyncLibrary()

show.Seasons.ForEach(s => s.Episodes.ForEach(e =>
{
TraktLogger.Info("Adding episode to trakt.tv collection, Title = '{0} - {1}x{2}', Collected At = '{3}', Audio Channels = '{4}', Audio Codec = '{5}', Resolution = '{6}', Media Type = '{7}', Is 3D = '{8}'", show.Title, s.Number, e.Number, e.CollectedAt.ToLogString(), e.AudioChannels.ToLogString(), e.AudioCodec.ToLogString(), e.Resolution.ToLogString(), e.MediaType.ToLogString(), e.Is3D);
TraktLogger.Info($"Adding episode to trakt.tv collection, Title = '{show.Title} - {s.Number}x{e.Number}', Collected At = '{e.CollectedAt.ToLogString()}', Audio Channels = '{e.AudioChannels.ToLogString()}', Audio Codec = '{e.AudioCodec.ToLogString()}', Resolution = '{e.Resolution.ToLogString()}', HDR = '{e.HdrType.ToLogString()}', Media Type = '{e.MediaType.ToLogString()}', Is 3D = '{e.Is3D}'");
}));

// only sync one show at a time regardless of batch size in settings
Expand Down

0 comments on commit c5fefb4

Please sign in to comment.