diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-06-24 22:07:53 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-06-24 22:07:53 -0700 |
| commit | 32a1f22730bf456360cfdb7daf6585c8c47f3d9d (patch) | |
| tree | a078c5ed2ff79b8475e054e68b8f0576fd15dc39 | |
| parent | 5be12eea37b8a4b6d330e8bfb1d0fa9b17158d06 (diff) | |
| download | seaweedfs-32a1f22730bf456360cfdb7daf6585c8c47f3d9d.tar.xz seaweedfs-32a1f22730bf456360cfdb7daf6585c8c47f3d9d.zip | |
more logs
| -rw-r--r-- | weed/storage/store_ec.go | 2 |
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 { |
