diff --git a/server/RdtClient.Service/Services/TorrentClients/PremiumizeTorrentClient.cs b/server/RdtClient.Service/Services/TorrentClients/PremiumizeTorrentClient.cs index 313916d..5a11bc0 100644 --- a/server/RdtClient.Service/Services/TorrentClients/PremiumizeTorrentClient.cs +++ b/server/RdtClient.Service/Services/TorrentClients/PremiumizeTorrentClient.cs @@ -295,7 +295,7 @@ public class PremiumizeTorrentClient(ILogger logger, IH { if (item.Link.Length < torrent.DownloadMinSize * 1024 * 1024) { - Log($"Not downloading {item.Name}, its size of {item.Link.Length} bytes is smaller than the minimum size of {torrent.DownloadMinSize} bytes"); + Log($"Not downloading {item.Name}, its size of {item.Link.Length} bytes is smaller than the minimum size of {torrent.DownloadMinSize} bytes", torrent); continue; } @@ -305,7 +305,7 @@ public class PremiumizeTorrentClient(ILogger logger, IH { if (!Regex.IsMatch(item.Name, torrent.IncludeRegex)) { - Log($"Not downloading {item.Name}, it does not match regex {torrent.IncludeRegex}"); + Log($"Not downloading {item.Name}, it does not match regex {torrent.IncludeRegex}", torrent); continue; } @@ -314,7 +314,7 @@ public class PremiumizeTorrentClient(ILogger logger, IH { if (Regex.IsMatch(item.Name, torrent.ExcludeRegex)) { - Log($"Not downloading {item.Name}, it matches regex {torrent.ExcludeRegex}"); + Log($"Not downloading {item.Name}, it matches regex {torrent.ExcludeRegex}", torrent); continue; }