Fix log fmt (#34810)

This commit is contained in:
Lunny Xiao 2025-06-24 21:51:04 +08:00 committed by GitHub
parent 6a97ab0af4
commit eb87e9d3b6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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
}