diff --git a/src/app.ts b/src/app.ts index a1ec400..04c1f99 100644 --- a/src/app.ts +++ b/src/app.ts @@ -44,7 +44,7 @@ const handleQueue = async (userId) => { try { await processUserMessage(ctx, { flowDynamic, state, provider }); } catch (error) { - console.error(Error processing message for user ${userId}:, error); + console.error(`Error processing message for user ${userId}`:, error); } finally { userLocks.set(userId, false); // Release the lock } @@ -116,4 +116,4 @@ const main = async () => { httpServer(+PORT); }; -main(); \ No newline at end of file +main();