diff --git a/lib/services/services.go b/lib/services/services.go index e62626a9..b80db4c3 100644 --- a/lib/services/services.go +++ b/lib/services/services.go @@ -678,7 +678,7 @@ func ResponseForbidden403MultiLoginNotAllowed(w http.ResponseWriter) { } func ResponseNotFound404UriNotExist(w http.ResponseWriter, r *http.Request) { - log.Errorf("r.Method:%s, r.URL:%", r.Method, r.URL) + log.Errorf("r.Method:%s, r.URL:%s", r.Method, r.URL) errorMessage := ErrorMessage{"1", "the requested URI does not exist"} errorResponse := ErrorResponse{errorMessage} ResponseWithJson(w, http.StatusNotFound, errorResponse)