Println doesn't support formats.

This commit is contained in:
Antonin Décimo
2020-09-14 15:48:16 +02:00
committed by Juliusz Chroboczek
parent aa3e094f65
commit c6d065aa20
+1 -1
View File
@@ -144,7 +144,7 @@ func groupHandler(w http.ResponseWriter, r *http.Request) {
if os.IsNotExist(err) {
notFound(w)
} else {
log.Println("addGroup: %v", err)
log.Printf("addGroup: %v", err)
http.Error(w, "Internal server error",
http.StatusInternalServerError)
}