From 005877bfc5666420b60d2008f2ebab3c9e07e3ca Mon Sep 17 00:00:00 2001 From: Hermes Date: Sat, 15 Aug 2026 23:56:24 +0500 Subject: [PATCH] =?UTF-8?q?fix:=20=D0=BB=D0=BE=D0=B3=D0=B8=D1=80=D0=BE?= =?UTF-8?q?=D0=B2=D0=B0=D1=82=D1=8C=20=D0=BE=D1=88=D0=B8=D0=B1=D0=BA=D1=83?= =?UTF-8?q?=20getUpdates=20=D0=B2=20polling=20=E2=80=94=20=D1=82=D0=B8?= =?UTF-8?q?=D1=88=D0=B8=D0=BD=D0=B0=20=D0=BD=D0=B5=20=D0=BF=D1=80=D1=8F?= =?UTF-8?q?=D1=82=D0=B0=D0=BB=D0=B0=D1=81=D1=8C=20=D0=B2=20=D0=BA=D0=BE?= =?UTF-8?q?=D0=BD=D1=81=D0=BE=D0=BB=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/chat/telegram/telegram.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/chat/telegram/telegram.go b/internal/chat/telegram/telegram.go index a918d57..71ab677 100644 --- a/internal/chat/telegram/telegram.go +++ b/internal/chat/telegram/telegram.go @@ -11,6 +11,7 @@ import ( "encoding/json" "fmt" "io" + "log" "net/http" "strconv" "time" @@ -53,6 +54,7 @@ func (ch *Channel) Run(ctx context.Context) error { return ctx.Err() default: } + log.Printf("telegram: getUpdates error: %v (offset=%d)", err, offset) time.Sleep(5 * time.Second) continue }