diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-08-06 04:26:29 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-08-06 04:26:29 -0700 |
| commit | 41007ced77742d31b6ac4df3221578716a6bf882 (patch) | |
| tree | 468a8af2d8df11e3703448edcf342fb4250f0cf8 | |
| parent | 2b74abf7661faaeca944cc1ec3a5bf4c85cc58b7 (diff) | |
| download | seaweedfs-41007ced77742d31b6ac4df3221578716a6bf882.tar.xz seaweedfs-41007ced77742d31b6ac4df3221578716a6bf882.zip | |
remove logging
| -rw-r--r-- | weed/filer2/stream.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/weed/filer2/stream.go b/weed/filer2/stream.go index c7df007ec..e9707d3ae 100644 --- a/weed/filer2/stream.go +++ b/weed/filer2/stream.go @@ -2,7 +2,6 @@ package filer2 import ( "bytes" - "fmt" "io" "math" "strings" @@ -15,7 +14,7 @@ import ( func StreamContent(masterClient *wdclient.MasterClient, w io.Writer, chunks []*filer_pb.FileChunk, offset int64, size int64) error { - fmt.Printf("start to stream content for chunks: %+v\n", chunks) + // fmt.Printf("start to stream content for chunks: %+v\n", chunks) chunkViews := ViewFromChunks(masterClient.LookupFileId, chunks, offset, size) fileId2Url := make(map[string]string) |
