mirror of
https://github.com/Radarr/Radarr
synced 2025-02-23 06:41:20 +00:00
Add response size to http responses
(cherry picked from commit d899225509f04a9b6c72da19c7d63ff53498de22)
This commit is contained in:
parent
6f42dd671f
commit
32393eabb7
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ public Dictionary<string, string> GetCookies()
|
|||
|
||||
public override string ToString()
|
||||
{
|
||||
var result = string.Format("Res: [{0}] {1}: {2}.{3}", Request.Method, Request.Url, (int)StatusCode, StatusCode);
|
||||
var result = string.Format("Res: [{0}] {1}: {2}.{3} ({4} bytes)", Request.Method, Request.Url, (int)StatusCode, StatusCode, ResponseData?.Length ?? 0);
|
||||
|
||||
if (HasHttpError && Headers.ContentType.IsNotNullOrWhiteSpace() && !Headers.ContentType.Equals("text/html", StringComparison.InvariantCultureIgnoreCase))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue