From d1c3873269d57f0c811c7887cbe37edc86d87746 Mon Sep 17 00:00:00 2001 From: simonzhangsz Date: Thu, 14 Sep 2023 10:33:29 +0800 Subject: [PATCH] dd --- lib/services/services.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/services/services.go b/lib/services/services.go index 5d2d9dc5..9ecbe918 100644 --- a/lib/services/services.go +++ b/lib/services/services.go @@ -682,7 +682,7 @@ func ResponseNotFound404UriNotExist(w http.ResponseWriter, r *http.Request) { ResponseStatusOK204NoContent(w) return } - //log.Errorf("r.Method:%s, r.URL:%s", 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)