From eb87e9d3b618718bd4a1a48cbb2b72e7bd6d02df Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Tue, 24 Jun 2025 21:51:04 +0800 Subject: [PATCH] Fix log fmt (#34810) --- services/lfs/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/lfs/server.go b/services/lfs/server.go index 59c9884fa8..15a51ad534 100644 --- a/services/lfs/server.go +++ b/services/lfs/server.go @@ -203,7 +203,7 @@ func BatchHandler(ctx *context.Context) { exists, err := contentStore.Exists(p) if err != nil { - log.Error("Unable to check if LFS OID[%s] exist. Error: %v", p.Oid, rc.User, rc.Repo, err) + log.Error("Unable to check if LFS object with ID '%s' exists for %s/%s. Error: %v", p.Oid, rc.User, rc.Repo, err) writeStatus(ctx, http.StatusInternalServerError) return }