From 1343d0c4f8f908e9709816472976b1acefffd7cb Mon Sep 17 00:00:00 2001 From: Alexey Skobkin Date: Tue, 12 Mar 2024 05:14:50 +0300 Subject: [PATCH] Logging 'typing' notification only in Debug level. --- bot/bot.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/bot.go b/bot/bot.go index 0c6c391..cd6c483 100644 --- a/bot/bot.go +++ b/bot/bot.go @@ -254,7 +254,7 @@ func (b *Bot) reply(originalMessage *telego.Message, newMessage *telego.SendMess } func (b *Bot) sendTyping(chatId telego.ChatID) { - slog.Info("Setting 'typing' chat action") + slog.Debug("Setting 'typing' chat action") err := b.api.SendChatAction(tu.ChatAction(chatId, "typing")) if err != nil {