From a82c7328114e189aa4d03ac6a66c63835ad3d7e7 Mon Sep 17 00:00:00 2001 From: faisolavolut Date: Tue, 11 Nov 2025 10:34:02 +0700 Subject: [PATCH] fix: remove debug log for public API endpoint check in CORS middleware --- src/app.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app.ts b/src/app.ts index 023a8fa..6ccdfd6 100644 --- a/src/app.ts +++ b/src/app.ts @@ -30,7 +30,6 @@ app.use((req, res, next) => { req.path.match(/^\/[^\/]+\/transfer-va\/(inquiry|payment)$/) || req.path.match(/^\/[^\/]+\/access-token\/b2b$/) || req.path.match(/^\/[^\/]+\/utilities\/signature-service$/); - console.log({ isPublicAPIEndpoint }); if (isPublicAPIEndpoint) { // Allow any origin for public API endpoints const publicCorsOptions = {