recomposed from Logging Interceptor https://github.com/square/okhttp/tree/master/okhttp-logging-interceptor
you will get direct information in logcat when you use okhttp/retrofit。
MyHttpLoggerInterceptor interceptor = new MyHttpLoggerInterceptor();
OkHttpClient client = new OkHttpClient.Builder()
.addInterceptor(interceptor)
.build();
compile 'Dingo.Demon:lib:1.0'