Trying to fix #13. Adding logging to the middleware.

This commit is contained in:
Alexey Skobkin 2024-03-12 22:10:34 +03:00
parent 5f55cec0e2
commit a2a37d0256
No known key found for this signature in database
GPG Key ID: 5D5CEF6F221278E7
1 changed files with 7 additions and 0 deletions

View File

@ -3,15 +3,22 @@ package bot
import (
"github.com/mymmrac/telego"
"github.com/mymmrac/telego/telegohandler"
"log/slog"
)
func (b *Bot) chatTypeStatsCounter(bot *telego.Bot, update telego.Update, next telegohandler.Handler) {
message := update.Message
if message == nil {
slog.Info("chat-type-middleware: update has no message. skipping.")
next(bot, update)
return
}
slog.Info("chat-type-middleware: counting message chat type in stats", "type", message.Chat.Type)
switch message.Chat.Type {
case telego.ChatTypeGroup, telego.ChatTypeSupergroup:
b.stats.GroupRequest()