From f3ee5e5505ad10f2b7905622cc3cf8cc23952e03 Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Wed, 4 May 2022 19:16:39 -0500 Subject: [PATCH] Disable logger --- helpers/astro/request.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/astro/request.js b/helpers/astro/request.js index b04996d..56dd4b1 100644 --- a/helpers/astro/request.js +++ b/helpers/astro/request.js @@ -5,7 +5,7 @@ export async function catchRedirectResponse ( Astro ) { const netlifyRedirectUrl = await getNetlifyRedirect( requestUrl.pathname ) - console.log('netlifyRedirectUrl', netlifyRedirectUrl) + // console.log('netlifyRedirectUrl', netlifyRedirectUrl) if ( netlifyRedirectUrl !== null ) { return Astro.redirect( netlifyRedirectUrl.to )