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,