Skip to content

Commit

Permalink
Remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Jun 7, 2024
1 parent bf13cb9 commit 6873824
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions game/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand All @@ -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
Expand Down

0 comments on commit 6873824

Please sign in to comment.