fix: логировать ошибку getUpdates в polling — тишина не пряталась в консоли
All checks were successful
CI / test (push) Successful in 46s
CI / build-and-package (amd64, darwin) (push) Successful in 44s
CI / build-and-package (amd64, linux) (push) Successful in 43s
CI / build-and-package (amd64, windows) (push) Successful in 44s
CI / build-and-package (arm64, darwin) (push) Successful in 50s
CI / build-and-package (arm64, linux) (push) Successful in 47s

This commit is contained in:
Hermes
2026-08-15 23:56:24 +05:00
parent 2b761aa0bc
commit 005877bfc5

View File

@@ -11,6 +11,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
"io" "io"
"log"
"net/http" "net/http"
"strconv" "strconv"
"time" "time"
@@ -53,6 +54,7 @@ func (ch *Channel) Run(ctx context.Context) error {
return ctx.Err() return ctx.Err()
default: default:
} }
log.Printf("telegram: getUpdates error: %v (offset=%d)", err, offset)
time.Sleep(5 * time.Second) time.Sleep(5 * time.Second)
continue continue
} }