Skip to content

Commit eb87e9d

Browse files
authored
Fix log fmt (#34810)
1 parent 6a97ab0 commit eb87e9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/lfs/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ func BatchHandler(ctx *context.Context) {
203203

204204
exists, err := contentStore.Exists(p)
205205
if err != nil {
206-
log.Error("Unable to check if LFS OID[%s] exist. Error: %v", p.Oid, rc.User, rc.Repo, err)
206+
log.Error("Unable to check if LFS object with ID '%s' exists for %s/%s. Error: %v", p.Oid, rc.User, rc.Repo, err)
207207
writeStatus(ctx, http.StatusInternalServerError)
208208
return
209209
}

0 commit comments

Comments
 (0)