From 24796717cf15913fd274e1cfd29c5145219cf30a Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Tue, 26 Apr 2022 11:26:12 -0500 Subject: [PATCH] Log Astro.request --- src/pages/app/[slug].astro | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pages/app/[slug].astro b/src/pages/app/[slug].astro index 8c6f290..ac1b0e8 100644 --- a/src/pages/app/[slug].astro +++ b/src/pages/app/[slug].astro @@ -35,11 +35,10 @@ const { const apiUrl = `${ import.meta.env.PUBLIC_API_DOMAIN }/api/app/spotify.json` -const cookie = Astro.request.headers.get('cookie') console.log('Astro.params', Astro.params ) console.log('apiUrl', apiUrl ) -console.log('cookie', cookie ) +console.log('Astro.request', Astro.request ) const appEntry = await axios.get(apiUrl) .then( response => {