Stop dumping cookies in the console (#1490)

This commit is contained in:
Constantin Piber
2025-07-02 19:35:56 +02:00
committed by GitHub
parent c15cf23168
commit 81fe3f0108
2 changed files with 0 additions and 2 deletions

View File

@@ -180,7 +180,6 @@ class PersistentCookieStore(
val newValues =
cookieMap[domain]
.orEmpty()
.onEach { println(it) }
.asSequence()
.filter { it.persistent && !it.hasExpired() }
.map(Cookie::toString)

View File

@@ -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,