From 81fe3f0108883a445a55e769bcd841c54ee70f7d Mon Sep 17 00:00:00 2001 From: Constantin Piber <59023762+cpiber@users.noreply.github.com> Date: Wed, 2 Jul 2025 19:35:56 +0200 Subject: [PATCH] Stop dumping cookies in the console (#1490) --- .../kotlin/eu/kanade/tachiyomi/network/PersistentCookieStore.kt | 1 - server/src/main/kotlin/suwayomi/tachidesk/server/ServerSetup.kt | 1 - 2 files changed, 2 deletions(-) diff --git a/server/src/main/kotlin/eu/kanade/tachiyomi/network/PersistentCookieStore.kt b/server/src/main/kotlin/eu/kanade/tachiyomi/network/PersistentCookieStore.kt index 29772a0c..e5467ed9 100644 --- a/server/src/main/kotlin/eu/kanade/tachiyomi/network/PersistentCookieStore.kt +++ b/server/src/main/kotlin/eu/kanade/tachiyomi/network/PersistentCookieStore.kt @@ -180,7 +180,6 @@ class PersistentCookieStore( val newValues = cookieMap[domain] .orEmpty() - .onEach { println(it) } .asSequence() .filter { it.persistent && !it.hasExpired() } .map(Cookie::toString) diff --git a/server/src/main/kotlin/suwayomi/tachidesk/server/ServerSetup.kt b/server/src/main/kotlin/suwayomi/tachidesk/server/ServerSetup.kt index 51bcea86..3dc6c6b4 100644 --- a/server/src/main/kotlin/suwayomi/tachidesk/server/ServerSetup.kt +++ b/server/src/main/kotlin/suwayomi/tachidesk/server/ServerSetup.kt @@ -224,7 +224,6 @@ fun applicationSetup() { CefCookieManager.getGlobalManager().apply { val cookies = networkHelper.cookieStore.getStoredCookies() for (cookie in cookies) { - logger.info { "Loading cookie ${cookie.name} for ${cookie.domain}" } try { if (!setCookie( "https://" + cookie.domain,