From a9ee2971b39892fb2a746cfbb6cd15379f52e2dd Mon Sep 17 00:00:00 2001 From: Andrew Date: Thu, 7 Mar 2024 08:44:41 +0000 Subject: [PATCH] Update data.go --- http/data.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/data.go b/http/data.go index a24ddd8b..f584a6a5 100644 --- a/http/data.go +++ b/http/data.go @@ -67,7 +67,7 @@ func handle(fn handleFunc, prefix string, store *storage.Storage, server *settin }) clientIP := realip.FromRequest(r) - log.Printf("%s: %v %s %v", r.URL.Path, status, clientIP, err) + log.Printf("%s: %v %s %v", r.URL.Path, status, clientIP, err) if status != 0 { txt := http.StatusText(status) http.Error(w, strconv.Itoa(status)+" "+txt, status)