We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 526dd08 commit 6c06697Copy full SHA for 6c06697
1 file changed
apps/ticket-admin/src/app/api/reissue/route.ts
@@ -19,6 +19,9 @@ export async function POST(req: Request) {
19
);
20
21
if (!apiRes.ok) {
22
+ console.error("Token reissue failed:", apiRes.statusText);
23
+ console.error("Token reissue failed:", JSON.stringify(apiRes));
24
+
25
throw new Error("Token reissue failed");
26
}
27
0 commit comments