diff --git a/testhelper.go b/testhelper.go index 0b5486e..c9c67d3 100644 --- a/testhelper.go +++ b/testhelper.go @@ -24,6 +24,7 @@ func main() { account := r.PostFormValue("account") var code string err := db.QueryRow("SELECT verification_code FROM pending_accounts WHERE number = $1", account).Scan(&code) + log.Printf("Looking for verification code for %s", account) if err != nil { fmt.Fprintf(w, "An error occured: %s\n", err) } else {