From 996b145ba988c27cf96324a4984634ff228e6600 Mon Sep 17 00:00:00 2001 From: Hepller Date: Sun, 12 Sep 2021 22:38:05 +0300 Subject: [PATCH] fix --- bot.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot.js b/bot.js index c3358b5..1cf66a9 100644 --- a/bot.js +++ b/bot.js @@ -38,7 +38,7 @@ vk.updates.on('message_new', async ctx => { if (Utils.getWithChance(config.chance)) { // Сообщение в консоль о начале генеарции - console.log(`Generation started <#${ctx.chatId}> ${Utils.getTimeString()}`) + console.log(`Generation started ${Utils.getTimeString()} <#${ctx.chatId}>`) // Статус набора текста await ctx.setActivity() @@ -57,7 +57,7 @@ vk.updates.on('message_new', async ctx => { // Отправка сообщения await ctx.send(config.format ? Utils.formatText(sentence) : sentence) - .then(() => console.log(`Text generated <#${ctx.chatId}> ${final_time}ms`)) + .then(() => console.log(`Text generated ${final_time}ms <#${ctx.chatId}>`)) } })