mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
remove logging
This commit is contained in:
parent
2b74abf766
commit
41007ced77
|
@ -2,7 +2,6 @@ package filer2
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"fmt"
|
|
||||||
"io"
|
"io"
|
||||||
"math"
|
"math"
|
||||||
"strings"
|
"strings"
|
||||||
|
@ -15,7 +14,7 @@ import (
|
||||||
|
|
||||||
func StreamContent(masterClient *wdclient.MasterClient, w io.Writer, chunks []*filer_pb.FileChunk, offset int64, size int64) error {
|
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)
|
chunkViews := ViewFromChunks(masterClient.LookupFileId, chunks, offset, size)
|
||||||
|
|
||||||
fileId2Url := make(map[string]string)
|
fileId2Url := make(map[string]string)
|
||||||
|
|
Loading…
Reference in a new issue