From 491c74e23120a70e91a9421e9a4115f865adbd69 Mon Sep 17 00:00:00 2001 From: NanamiAdmin Date: Tue, 10 Mar 2026 18:41:27 +0800 Subject: [PATCH] refactor(utils): remove debug log from cookie getter --- src/utils/functions.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/utils/functions.js b/src/utils/functions.js index 14f36d1..5964284 100644 --- a/src/utils/functions.js +++ b/src/utils/functions.js @@ -78,7 +78,6 @@ function getCookie(name) { } if (cookie.indexOf(nameEQ) === 0) { const value = cookie.substring(nameEQ.length, cookie.length); - postLog.debug(`Cookie get: ${name}`); return value; } }