Spit out as text in error console

This commit is contained in:
2026-04-12 01:13:59 -04:00
parent b671aefd6e
commit 4b15c65092

View File

@@ -17,7 +17,7 @@ export async function onRequestGet(context: RequestContext) {
); );
if (!robloxUserReq.ok) { if (!robloxUserReq.ok) {
console.log(await robloxUserReq.json()); console.log(await robloxUserReq.text());
return jsonError("Failed to resolve username", 500); return jsonError("Failed to resolve username", 500);
} }