Skip to content

Commit

Permalink
Removes error logging
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbs committed Oct 24, 2024
1 parent d6dbfb3 commit f1b540f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/app/api/proxy/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ export async function GET(req: NextRequest) {
const file = await downloadFile({ url, maxBytes, timeoutInSeconds })
return new NextResponse(file, { status: 200 })
} catch (error) {
console.log(error)
if (error instanceof Error == false) {
return makeAPIErrorResponse(500, "An unknown error occurred.")
}
Expand Down

0 comments on commit f1b540f

Please sign in to comment.