Network Logging - Android
Logging HttpUrlConnection Requests
HttpUrlConnection RequestsLuciqNetworkLog networkLog = new LuciqNetworkLog();
networkLog.Log(urlConnection, requestBody, responseBody);LuciqNetworkLog networkLog = new LuciqNetworkLog()
networkLog.Log(urlConnection, requestBody, responseBody)Logging Okhttp Requests
Okhttp Requestsimplementation 'com.luciq.library:luciq-with-okhttp-interceptor:11.5.4'LuciqOkhttpInterceptor luciqOkhttpInterceptor = new LuciqOkhttpInterceptor();
OkHttpClient client = new OkHttpClient.Builder()
.addInterceptor(interceptor)
.addInterceptor(luciqOkhttpInterceptor)
.build();val luciqOkhttpInterceptor = LuciqOkhttpInterceptor()
val client = OkHttpClient.Builder()
.addInterceptor(interceptor)
.addInterceptor(luciqOkhttpInterceptor)
.build()Modifying Requests
Last updated