diff options
-rw-r--r-- | src/http.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http.go b/src/http.go index e7e874d..27bea85 100644 --- a/src/http.go +++ b/src/http.go @@ -71,7 +71,7 @@ func createPostHandler(w http.ResponseWriter, r *http.Request) { } else if r.Form.Get("challengeStatic") == "off" { static = false } else { - log.Println("Could not parse static: %v", r.Form.Get("challengeStatic")) + log.Printf("Could not parse static: %v", r.Form.Get("challengeStatic")) return } |