HttpLoggingInterceptor

HttpLoggingInterceptor

有办法隐藏okhttp控制台日志吗?
android - 在控制台中隐藏解码的图像(OkHttp)-LMLPHP

最佳答案

尝试添加这个interceptor

HttpLoggingInterceptor logging  = new HttpLoggingInterceptor();
logging.setLevel(HttpLoggingInterceptor.Level.NONE);

到您的OkHttpClient

关于android - 在控制台中隐藏解码的图像(OkHttp),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57289375/

10-12 04:05