fix(core): reduce HTTP logging level

This commit is contained in:
Harsh Shandilya 2022-11-13 21:15:03 +05:30
parent 157fe2c221
commit 15abd31b03
No known key found for this signature in database

View file

@ -69,7 +69,7 @@ interface OkHttpModule {
@Provides
@IntoSet
fun provideHttpLoggingInterceptor(logger: HttpLoggingInterceptor.Logger): Interceptor {
return HttpLoggingInterceptor(logger).setLevel(HttpLoggingInterceptor.Level.HEADERS)
return HttpLoggingInterceptor(logger).setLevel(HttpLoggingInterceptor.Level.BASIC)
}
}
}