1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-07-07 04:19:25 +02:00

Add response size to http responses

(cherry picked from commit d899225509f04a9b6c72da19c7d63ff53498de22)
This commit is contained in:
Taloth Saldono 2022-03-20 22:19:06 +01:00 committed by Qstick
parent 6f42dd671f
commit 32393eabb7

View File

@ -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))
{