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) } } }