From 6e43e8ce17dab9b5b99fa9449e869c910981bff9 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Mon, 1 Mar 2021 00:48:59 -0800 Subject: [PATCH] add logs for remote file loading --- weed/storage/volume_loading.go | 1 + 1 file changed, 1 insertion(+) diff --git a/weed/storage/volume_loading.go b/weed/storage/volume_loading.go index cf34ff133..7f70031ed 100644 --- a/weed/storage/volume_loading.go +++ b/weed/storage/volume_loading.go @@ -83,6 +83,7 @@ func (v *Volume) load(alsoLoadIndex bool, createDatIfMissing bool, needleMapKind if alreadyHasSuperBlock { err = v.readSuperBlock() + glog.V(0).Infof("readSuperBlock volume %d version %v", v.Id, v.SuperBlock.Version) } else { if !v.SuperBlock.Initialized() { return fmt.Errorf("volume %s not initialized", v.FileName(".dat"))