This commit is contained in:
flyingtoasters
2025-04-04 11:08:53 -04:00
parent b82c0aa22f
commit 89a548faff

View File

@@ -367,7 +367,7 @@ export async function DEV_EXEC(request, env, interaction, ctx) {
await sendFollowUp(env, interaction, markdown); await sendFollowUp(env, interaction, markdown);
console.log('Follow-up message sent successfully!'); console.log('Follow-up message sent successfully!');
} catch (error) { } catch (error) {
console.error("Error processing DEV_EXEC:\n\n", error.messagen "\n\n", error.stack); console.error("Error processing DEV_EXEC:\n\n", error.message, "\n\n", error.stack);
// Send an error follow-up message if something goes wrong // Send an error follow-up message if something goes wrong
await sendFollowUp(env, interaction, "An error occurred while processing your request."); await sendFollowUp(env, interaction, "An error occurred while processing your request.");
} }