diff --git a/store/rootmulti/store.go b/store/rootmulti/store.go index f25ca7003..8a5fa496d 100644 --- a/store/rootmulti/store.go +++ b/store/rootmulti/store.go @@ -803,7 +803,7 @@ func (rs *Store) Snapshot(height uint64, protoWriter protoio.Writer) error { if err != nil { return err } - + rs.logger.Info(fmt.Sprintf("Exporting snapshot for store %s", store.name)) for { node, err := exporter.Next() if err == iavltree.ExportDone { diff --git a/storev2/rootmulti/store.go b/storev2/rootmulti/store.go index c79506890..e4abfbf25 100644 --- a/storev2/rootmulti/store.go +++ b/storev2/rootmulti/store.go @@ -720,6 +720,7 @@ loop: restoreErr = err break loop } + rs.logger.Info(fmt.Sprintf("Start restoring store: %s", storeKey)) case *snapshottypes.SnapshotItem_IAVL: if item.IAVL.Height > math.MaxInt8 { restoreErr = errors.Wrapf(sdkerrors.ErrLogic, "node height %v cannot exceed %v",