diff --git a/src/utils/ensure-user.ts b/src/utils/ensure-user.ts index 0654476..7726ffb 100644 --- a/src/utils/ensure-user.ts +++ b/src/utils/ensure-user.ts @@ -52,7 +52,6 @@ export async function ensureUserInDb(ctx, db) { aiRequests: 0, aiCharacters: 0, }; - console.log('[💽 DB] Inserting user with values:', userToInsert); try { await db.insert(usersTable).values(userToInsert); console.log(`[💽 DB] Added new user: ${username || firstName} (${telegramId})`);