-1
我向服務器發出了一個查詢,但出現錯誤。請告訴我,如何查看我的查詢內容以查看錯誤在哪裏。如何登錄翻新2?如何查看POST查詢中的內容?改造2
我向服務器發出了一個查詢,但出現錯誤。請告訴我,如何查看我的查詢內容以查看錯誤在哪裏。如何登錄翻新2?如何查看POST查詢中的內容?改造2
您可以通過使用攔截器改造的HttpClient例如記錄所有的請求,你可以在OkHttp添加HttpInterceptor依賴度以下的gradle中文件的步驟:
compile 'com.squareup.okhttp3:logging-interceptor:3.4.0'
然後
OKHttp client = ....
HttpLoggingInterceptor interceptor = new HttpLoggingInterceptor();
interceptor.setLevel(HttpLoggingInterceptor.Level.BODY);
client.interceptors().add(interceptor);
Retrofit retrofit = new Retrofit.Builder()
.baseUrl("url")
.client(client) // add custom OkHttp client
你不能從客戶端查看您的查詢異常。查看你的服務器日誌 –
https://stackoverflow.com/questions/32514410/logging-with-retrofit-2 –