From 15abd31b03b7ff29ae8882e6dcbdae5e6bf96af3 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Sun, 13 Nov 2022 21:15:03 +0530 Subject: [PATCH] fix(core): reduce HTTP logging level --- .../kotlin/dev/msfjarvis/claw/core/injection/OkHttpModule.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/kotlin/dev/msfjarvis/claw/core/injection/OkHttpModule.kt b/core/src/main/kotlin/dev/msfjarvis/claw/core/injection/OkHttpModule.kt index 8de8351c..175fa7e1 100644 --- a/core/src/main/kotlin/dev/msfjarvis/claw/core/injection/OkHttpModule.kt +++ b/core/src/main/kotlin/dev/msfjarvis/claw/core/injection/OkHttpModule.kt @@ -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) } } }