Retrofit2 HttpLoggingInterceptor Logcat

时间:2016-02-06 00:02:07

标签: android android-logcat retrofit2 okhttp3

可能是一个新手问题,但我想知道我在哪里实际捕获log cat中的日志。是否有一个特定的地方我放了一个日志,一个特殊的正则表达式使用等。这就是我的拦截器的样子:

CALL ZipUp C:\Source\Dir C:\Archive.zip

这是一个api调用,其中body是null

HttpLoggingInterceptor interceptor = new HttpLoggingInterceptor();
        interceptor.setLevel(HttpLoggingInterceptor.Level.BODY);

        OkHttpClient okClient = new OkHttpClient.Builder().addInterceptor(interceptor).build();

        // Retrofit setup


        Retrofit client = new retrofit2.Retrofit.Builder()
                .baseUrl(BASE_URL)
                .addConverterFactory(GsonConverterFactory.create())
                .client(okClient)
                .build();

1 个答案:

答案 0 :(得分:4)

我这样使用:

buildExample(&e, a, b);
while(i < e.length){
    printf("%d  %d\n", i, e.data[i]);
    i++;
}
printf("%d  %d\n", i, e.data[i]);