Skip to content

Commit

Permalink
Debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobwgillespie committed May 8, 2024
1 parent 0aa33ba commit a7241c9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/utils/feedbin.ts
Expand Up @@ -15,6 +15,7 @@ async function feedbin<APIResponse>(endpoint: string): Promise<APIResponse> {
const response = await fetch(url, {
headers: {Authorization: `Basic ${FEEDBIN_API_KEY}`, Accept: 'application/json'},
})
console.log({url, status: response.status, FEEDBIN_API_KEY})
const body = await response.text()
try {
return JSON.parse(body)
Expand Down

0 comments on commit a7241c9

Please sign in to comment.