diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-03-28 14:07:25 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-03-28 14:07:25 -0700 |
| commit | af6d9976adf295e092853b75d34ba633699df3f1 (patch) | |
| tree | 6418267a18685f9261550b2e7e3de07660301e66 | |
| parent | a75d50bbb81998731cc36b8299cbb3254421f27a (diff) | |
| download | seaweedfs-af6d9976adf295e092853b75d34ba633699df3f1.tar.xz seaweedfs-af6d9976adf295e092853b75d34ba633699df3f1.zip | |
adjust print out
| -rw-r--r-- | weed/filesys/reader_at.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/filesys/reader_at.go b/weed/filesys/reader_at.go index c9872b796..c95b6cdb9 100644 --- a/weed/filesys/reader_at.go +++ b/weed/filesys/reader_at.go @@ -104,7 +104,7 @@ func (c *ChunkReadAt) doReadAt(p []byte, offset int64) (n int, err error) { func (c *ChunkReadAt) fetchChunkData(chunkView *filer2.ChunkView) ([]byte, error) { - fmt.Printf("fetching %s [%d,%d)\n", chunkView.FileId, chunkView.LogicOffset, chunkView.LogicOffset+int64(chunkView.Size)) + // fmt.Printf("fetching %s [%d,%d)\n", chunkView.FileId, chunkView.LogicOffset, chunkView.LogicOffset+int64(chunkView.Size)) chunkData := c.chunkCache.GetChunk(chunkView.FileId) if chunkData != nil { |
