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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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