From bb59ab4f5a471503eb71c7b8f7f03a47cc1f7922 Mon Sep 17 00:00:00 2001 From: Gary Rong Date: Mon, 30 Oct 2023 21:19:36 +0800 Subject: [PATCH] trie/triedb/pathdb: address comment --- trie/triedb/pathdb/disklayer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trie/triedb/pathdb/disklayer.go b/trie/triedb/pathdb/disklayer.go index c3be98a255..ef697cbce8 100644 --- a/trie/triedb/pathdb/disklayer.go +++ b/trie/triedb/pathdb/disklayer.go @@ -229,7 +229,7 @@ func (dl *diskLayer) commit(bottom *diffLayer, force bool) (*diskLayer, error) { if err != nil { return nil, err } - log.Debug("Prune state history", "number", pruned) + log.Debug("Pruned state history", "items", pruned, "tailid", oldest) } return ndl, nil }