From 49203653d531ae81354cab443d0770b4171d128f Mon Sep 17 00:00:00 2001 From: Astra Date: Thu, 5 Feb 2026 12:50:53 +0000 Subject: [PATCH] Remove debug logging --- main.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/main.go b/main.go index bc48a61..f4b0a19 100644 --- a/main.go +++ b/main.go @@ -53,7 +53,6 @@ func main() { for update := range updatesChannel { if update.ChatJoinRequest != nil { - log.Printf("%+v - %+v - %+v\n", update.ChatJoinRequest.Chat.ID, b.Config.TargetChatId, update.ChatJoinRequest.From) if update.ChatJoinRequest.Chat.ID == b.Config.TargetChatId { b.handleJoinRequest(update.ChatJoinRequest) } @@ -149,7 +148,6 @@ func (bot *Bot) handleJoinRequest(request *api.ChatJoinRequest) { if bot.Config.AdminChatTopicId != 0 { m.MessageThreadID = bot.Config.AdminChatTopicId } - log.Printf("%+v\n", m) r, err := bot.API.Send(m) if err != nil { log.Printf("Failed to send join request to admin chat: %v", err)