crossmate

A collaborative crossword app for iOS
Log | Files | Refs | LICENSE

commit c65cde3c889283c3058cb64d65851d92457fcdd8
parent 39f5d88a629f7369095156a3038f1ad6fa076965
Author: Michael Camilleri <[email protected]>
Date:   Fri,  3 Jul 2026 13:06:51 +0900

Remove cookie logging line

Diffstat:
MCrossmate/Services/NYTAuthService.swift | 6------
1 file changed, 0 insertions(+), 6 deletions(-)

diff --git a/Crossmate/Services/NYTAuthService.swift b/Crossmate/Services/NYTAuthService.swift @@ -68,12 +68,6 @@ final class NYTAuthService { do { let cookies = await cookieStore.allCookies() - print("=== COOKIES FROM WEBVIEW ===") - for cookie in cookies { - print("\(cookie.name) (domain: \(cookie.domain))") - } - print("=== END COOKIES ===") - guard let nytsCookie = cookies.first(where: { $0.name == "NYT-S" }) else { throw NYTAuthError.missingCookie }