Log invalid torrent files contents as debug

Fixes #2169
This commit is contained in:
Bogdan
2024-07-12 13:00:23 +03:00
parent 803c4752db
commit 7bada440d2

View File

@@ -24,7 +24,7 @@ namespace NzbDrone.Core.Indexers
} }
catch catch
{ {
_logger.Info("Invalid torrent file contents: {0}", Encoding.ASCII.GetString(fileData)); _logger.Debug("Invalid torrent file contents: {0}", Encoding.ASCII.GetString(fileData));
throw; throw;
} }
} }