Remove fmt.println from code

This commit is contained in:
Henrique Dias
2017-11-15 08:59:23 +00:00
committed by GitHub
parent 927a1aea6c
commit d3eafec864

View File

@@ -75,7 +75,6 @@ func authHandler(c *fm.Context, w http.ResponseWriter, r *http.Request) (int, er
if len(c.ReCaptchaSecret) > 0 {
ok, err := reCaptcha(c.ReCaptchaSecret, cred.ReCaptcha)
if err != nil {
fmt.Println(err)
return http.StatusForbidden, err
}