luke_c
02/19/2021, 11:39 AMHttpLoggingInterceptor
on a signed release build? I’ve set debuggable to true, and tried on the emulator and 2 physical devices (OnePlus and Samsung) but no matter what I do I can’t see logs from it, I can see them fine on a debug build
Here’s how the logger is being added:
val httpLoggingInterceptor = HttpLoggingInterceptor()
httpLoggingInterceptor.level = HttpLoggingInterceptor.Level.BODY
return OkHttpClient.Builder()
.addInterceptor(httpLoggingInterceptor)
.addInterceptor(headerInterceptor)
.build()
Ed George
02/19/2021, 1:15 PMluke_c
02/19/2021, 1:38 PM