Don't log every received message

This commit is contained in:
Noah 2024-12-22 08:21:02 +01:00
parent b0d49ab3c4
commit b0d68f3a83

3
bot.go
View file

@ -29,9 +29,8 @@ func bot() {
continue
}
log.Info().Int64("ChatID", update.Message.Chat.ID).Int64("UserID", update.Message.From.ID).Str("Text", update.Message.Text).Msg("Recieved Message")
if update.Message.IsCommand() {
log.Info().Int64("ChatID", update.Message.Chat.ID).Int64("UserID", update.Message.From.ID).Str("Text", update.Message.Text).Msg("Received Command")
commands.Commands(update, bot)
}
}