aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2020-06-24 22:07:53 -0700
committerChris Lu <chris.lu@gmail.com>2020-06-24 22:07:53 -0700
commit32a1f22730bf456360cfdb7daf6585c8c47f3d9d (patch)
treea078c5ed2ff79b8475e054e68b8f0576fd15dc39
parent5be12eea37b8a4b6d330e8bfb1d0fa9b17158d06 (diff)
downloadseaweedfs-32a1f22730bf456360cfdb7daf6585c8c47f3d9d.tar.xz
seaweedfs-32a1f22730bf456360cfdb7daf6585c8c47f3d9d.zip
more logs
-rw-r--r--weed/storage/store_ec.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/storage/store_ec.go b/weed/storage/store_ec.go
index e423e7dca..2b0df439c 100644
--- a/weed/storage/store_ec.go
+++ b/weed/storage/store_ec.go
@@ -180,7 +180,7 @@ func (s *Store) readOneEcShardInterval(needleId types.NeedleId, ecVolume *erasur
data = make([]byte, interval.Size)
if shard, found := ecVolume.FindEcVolumeShard(shardId); found {
if _, err = shard.ReadAt(data, actualOffset); err != nil {
- glog.V(0).Infof("read local ec shard %d.%d: %v", ecVolume.VolumeId, shardId, err)
+ glog.V(0).Infof("read local ec shard %d.%d offset %d: %v", ecVolume.VolumeId, shardId, actualOffset, err)
return
}
} else {