From 1e8700af58d46bf07398000949387af887d23e42 Mon Sep 17 00:00:00 2001 From: Anshul Sinha Date: Tue, 1 Apr 2025 19:47:02 +0530 Subject: [PATCH] removed print --- ctx.go | 1 - 1 file changed, 1 deletion(-) diff --git a/ctx.go b/ctx.go index a69a076f..92ca6bf5 100644 --- a/ctx.go +++ b/ctx.go @@ -454,7 +454,6 @@ func (c *DefaultCtx) Cookies(key string, defaultValue ...string) string { value := c.app.getString(c.fasthttp.Request.Header.Cookie(key)) // If the value looks like binary data, return it as-is if len(value) > 0 && !utf8.ValidString(value) { - fmt.Println("Detected non-UTF8 cookie value, returning raw bytes") return value } return defaultString(c.sanitizeCookieValue(value), defaultValue)