From 78692a89a0a76fcf9a36ba973913c4a2cc11db17 Mon Sep 17 00:00:00 2001 From: Danil Nikolaev Date: Mon, 12 Jan 2026 16:27:32 +0300 Subject: [PATCH] update index.ts --- src/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 043fa44..9b40a74 100644 --- a/src/index.ts +++ b/src/index.ts @@ -126,6 +126,8 @@ export const chatCommands: ChatCommand[] = [ ]; async function main() { + console.log(`TEST_ENVIRONMENT: ${Environment.TEST_ENVIRONMENT}\nDATA_PATH: ${Environment.DATA_PATH}`); + try { const messages = await messageDao.getAll(); const users = await userDao.getAll(); @@ -142,7 +144,7 @@ async function main() { await UserStore.put(botUser); await bot.startPolling(); - console.log(`Bot started! TEST_ENVIRONMENT: ${Environment.TEST_ENVIRONMENT}\nDATA_PATH: ${Environment.DATA_PATH}`); + console.log(`Bot started!`); } catch (error) { console.error(error); }