From 6873824f6750e91bd48ae6d5a01a2b402a1dac68 Mon Sep 17 00:00:00 2001 From: = <=> Date: Fri, 7 Jun 2024 14:44:57 +0100 Subject: [PATCH] Remove logs --- game/handler.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/game/handler.go b/game/handler.go index 8440107..6e60618 100644 --- a/game/handler.go +++ b/game/handler.go @@ -664,11 +664,8 @@ type configuration struct { func handleConfigure(w ResponseWriter, r Request) error { ctx := appengine.NewContext(r.Req()) - log.Infof(ctx, "handleConfigure called") - fmt.Printf("handleConfigure called") conf := &configuration{} - log.Infof(ctx, "handleConfigure called with %+v", conf) if err := json.NewDecoder(r.Req().Body).Decode(conf); err != nil { return err } @@ -692,8 +689,6 @@ func handleConfigure(w ResponseWriter, r Request) error { return err } } - fmt.Printf("DiscordBotCredentials: %+v", conf.DiscordBotCredentials) - log.Infof(ctx, "DiscordBotCredentials: %+v", conf.DiscordBotCredentials) if conf.DiscordBotCredentials != nil { if err := auth.SetDiscordBotCredentials(ctx, conf.DiscordBotCredentials); err != nil { return err