From 205805f4607e06c6a27db3a858b612cae0511538 Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Tue, 24 Dec 2024 10:29:45 +0800 Subject: [PATCH] :zap: Reduce startup time when sync is enabled https://github.com/siyuan-note/siyuan/issues/13589 --- ref.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ref.go b/ref.go index fc86703..2da8f85 100644 --- a/ref.go +++ b/ref.go @@ -127,7 +127,7 @@ func (repo *Repo) getFullLatest(latest *entity.Index) (ret *FullIndex) { return } - logging.LogInfof("got local full latest [size=%s], cost [%s]", humanize.Bytes(uint64(len(data))), time.Since(start)) + logging.LogInfof("got local full latest [files=%d, size=%s], cost [%s]", len(ret.Files), humanize.Bytes(uint64(len(data))), time.Since(start)) return }