Skip to content

Commit

Permalink
🐛
Browse files Browse the repository at this point in the history
  • Loading branch information
BeiyanYunyi committed Oct 28, 2023
1 parent 05da37c commit 0791d88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/api/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const onRequestGet: PagesFunction<Env> = async (ctx) => {
for await (const req of reqs) {
await req.digestAndSign(ctx.env);
const es = await fetch(req);
console.log(await es.json());
console.log(await es.text(), es.status);
}
return new Response(JSON.stringify(json.orderedItems), {
headers: { 'Content-Type': 'application/activity+json' },
Expand Down

0 comments on commit 0791d88

Please sign in to comment.