From f3e08bd297673fdcf711564ad4db3881e4c77877 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Thu, 10 Jul 2025 18:08:09 -0400 Subject: [PATCH] No need for this OkHttp log anymore --- .../amethyst/service/okhttp/OkHttpClientFactory.kt | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/service/okhttp/OkHttpClientFactory.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/service/okhttp/OkHttpClientFactory.kt index 769d2372e..a6aabc68f 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/service/okhttp/OkHttpClientFactory.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/service/okhttp/OkHttpClientFactory.kt @@ -20,12 +20,6 @@ */ package com.vitorpamplona.amethyst.service.okhttp -import android.util.Log -import com.vitorpamplona.amethyst.isDebug -import kotlinx.coroutines.Dispatchers -import kotlinx.coroutines.GlobalScope -import kotlinx.coroutines.delay -import kotlinx.coroutines.launch import okhttp3.Dispatcher import okhttp3.OkHttpClient import java.net.InetSocketAddress @@ -51,6 +45,8 @@ class OkHttpClientFactory( maxRequests = 512 } + /* + DEBUG OK HTTP connections here. init { if (isDebug) { GlobalScope.launch(Dispatchers.IO) { @@ -61,6 +57,7 @@ class OkHttpClientFactory( } } } + */ private val rootClient = OkHttpClient