From 927b323bd9466aebcabafa016e2ef737d3c852fb Mon Sep 17 00:00:00 2001 From: dosiecki Date: Mon, 1 Jun 2015 13:42:35 -0700 Subject: [PATCH] Add size profiling to network response debug logs. --- .../android/NewsBlur/src/com/newsblur/network/APIResponse.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/android/NewsBlur/src/com/newsblur/network/APIResponse.java b/clients/android/NewsBlur/src/com/newsblur/network/APIResponse.java index c3c98bf4a..2d1967224 100644 --- a/clients/android/NewsBlur/src/com/newsblur/network/APIResponse.java +++ b/clients/android/NewsBlur/src/com/newsblur/network/APIResponse.java @@ -86,7 +86,7 @@ public class APIResponse { } if (AppConstants.VERBOSE_LOG_NET) { - Log.d(this.getClass().getName(), String.format("called %s in %dms and %dms", request.urlString(), connectTime, readTime)); + Log.d(this.getClass().getName(), String.format("called %s in %dms and %dms to read %dB", request.urlString(), connectTime, readTime, responseBody.length())); } } else {