From 7fbdd71411d8ea8e6da995f092883e94219282ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20Trma=C4=8D?= Date: Mon, 14 Oct 2024 19:37:02 +0200 Subject: [PATCH] Fix format string inconsistency causing a build failure MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miloslav Trmač --- cmd/skopeo/proxy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/skopeo/proxy.go b/cmd/skopeo/proxy.go index 471ac50f..b1389396 100644 --- a/cmd/skopeo/proxy.go +++ b/cmd/skopeo/proxy.go @@ -784,7 +784,7 @@ func (h *proxyHandler) processRequest(readBytes []byte) (rb replyBuf, terminate err = fmt.Errorf("invalid request: %v", err) return } - logrus.Debugf("Executing method %s", req.Method, err) + logrus.Debugf("Executing method %s", req.Method) // Dispatch on the method switch req.Method {