summaryrefslogtreecommitdiff
path: root/refs/files-backend.c
diff options
context:
space:
mode:
authorKarthik Nayak <karthik.188@gmail.com>2025-10-07 14:11:26 +0200
committerJunio C Hamano <gitster@pobox.com>2025-10-07 09:22:57 -0700
commit1ef32f09897754c607f1e16df396c5ac545a1297 (patch)
tree643ec9ce87e2208269c78c5e3bdd3afd38110c70 /refs/files-backend.c
parent2d2920c0cebd9e3537e9068a6ef5c60b389ce4a0 (diff)
refs: move consistency check msg to generic layer
The files-backend prints a message before the consistency checks run. Move this to the generic layer so both the files and reftable backend can benefit from this message. Signed-off-by: Karthik Nayak <karthik.188@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'refs/files-backend.c')
-rw-r--r--refs/files-backend.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/refs/files-backend.c b/refs/files-backend.c
index 1bdca2ece3..62cbedec2a 100644
--- a/refs/files-backend.c
+++ b/refs/files-backend.c
@@ -3826,8 +3826,6 @@ static int files_fsck_refs(struct ref_store *ref_store,
NULL,
};
- if (o->verbose)
- fprintf_ln(stderr, _("Checking references consistency"));
return files_fsck_refs_dir(ref_store, o, "refs", wt, fsck_refs_fn);
}