From a84e24ff25dce4f86c9f2bceed35be1c4bc756fa Mon Sep 17 00:00:00 2001 From: ScuroNeko Date: Fri, 27 Feb 2026 13:53:00 +0300 Subject: [PATCH] small fix --- bot.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/bot.go b/bot.go index 8864452..8ad242e 100644 --- a/bot.go +++ b/bot.go @@ -3,7 +3,6 @@ package laniakea import ( "context" "fmt" - "log" "os" "sort" "strconv" @@ -325,7 +324,6 @@ func (bot *Bot[T]) RunWithContext(ctx context.Context) { pool := pond.NewPool(16) for update := range bot.updateQueue { update := update - log.Println(update) pool.Submit(func() { bot.handle(update) })