From b4ac20a08e593db7ba817e691585e4f96c59fa52 Mon Sep 17 00:00:00 2001 From: AliMVP Date: Fri, 7 Sep 2018 20:00:51 +0430 Subject: [PATCH] - Log Request --- bot.go | 1 - 1 file changed, 1 deletion(-) diff --git a/bot.go b/bot.go index 694772e..1f2cbb5 100644 --- a/bot.go +++ b/bot.go @@ -511,7 +511,6 @@ func (bot *BotAPI) ListenForWebhook(pattern string) UpdatesChannel { http.HandleFunc(pattern, func(w http.ResponseWriter, r *http.Request) { bytes, _ := ioutil.ReadAll(r.Body) - fmt.Println(string(bytes)) var update Update json.Unmarshal(bytes, &update)