From 0d53a30371d0ed9617d1adf5551acb0f1880f49a Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Sat, 3 May 2025 16:33:08 -0400 Subject: [PATCH] Disable event logger for now --- amethyst/src/main/java/com/vitorpamplona/amethyst/Amethyst.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/Amethyst.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/Amethyst.kt index 47da7cfc6..23fa7d789 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/Amethyst.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/Amethyst.kt @@ -41,7 +41,6 @@ import com.vitorpamplona.amethyst.service.ots.OtsBlockHeightCache import com.vitorpamplona.amethyst.service.playback.diskCache.VideoCache import com.vitorpamplona.amethyst.service.playback.diskCache.VideoCacheFactory import com.vitorpamplona.amethyst.service.relayClient.CacheClientConnector -import com.vitorpamplona.amethyst.service.relayClient.RelayLogger import com.vitorpamplona.amethyst.service.relayClient.authCommand.model.AuthCoordinator import com.vitorpamplona.amethyst.service.relayClient.notifyCommand.model.NotifyCoordinator import com.vitorpamplona.amethyst.service.relayClient.reqCommand.RelaySubscriptionsCoordinator @@ -110,7 +109,7 @@ class Amethyst : Application() { // Authenticates with relays. val authCoordinator = AuthCoordinator(client) - val logger = if (isDebug) RelayLogger(client) else null + // val logger = if (isDebug) RelayLogger(client) else null // Organizes cache clearing val trimmingService = MemoryTrimmingService(cache)