Fix Request SearchCriteria Logging

This commit is contained in:
Qstick
2021-02-15 23:51:30 -05:00
parent a080bf1c6c
commit 00d9523d42
@@ -20,5 +20,10 @@ namespace NzbDrone.Core.IndexerSearch.Definitions
public int? Limit { get; set; }
public int? Offset { get; set; }
public string Source { get; set; }
public override string ToString()
{
return $"{{Term: {SearchTerm}, Offset: {Offset ?? 0}, Limit: {Limit ?? 0}, Categories: [{string.Join(", ", Categories)}]}}";
}
}
}