aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2019-07-02 21:33:23 -0700
committerChris Lu <chris.lu@gmail.com>2019-07-02 21:33:23 -0700
commit36250154cc42cdeb87c1871f256e36100f40cb3a (patch)
tree14a843f2524938c6b3671a5a439fd65004caf0cd
parent4d579f7f578c723a23cdf1aae691b972ea324883 (diff)
downloadseaweedfs-36250154cc42cdeb87c1871f256e36100f40cb3a.tar.xz
seaweedfs-36250154cc42cdeb87c1871f256e36100f40cb3a.zip
remove println
-rw-r--r--weed/filer2/leveldb2/leveldb2_store.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/filer2/leveldb2/leveldb2_store.go b/weed/filer2/leveldb2/leveldb2_store.go
index f1a4bac9e..4171131c1 100644
--- a/weed/filer2/leveldb2/leveldb2_store.go
+++ b/weed/filer2/leveldb2/leveldb2_store.go
@@ -117,7 +117,7 @@ func (store *LevelDB2Store) FindEntry(ctx context.Context, fullpath filer2.FullP
return entry, fmt.Errorf("decode %s : %v", entry.FullPath, err)
}
- println("read", entry.FullPath, "chunks", len(entry.Chunks), "data", len(data), string(data))
+ // println("read", entry.FullPath, "chunks", len(entry.Chunks), "data", len(data), string(data))
return entry, nil
}
@@ -160,7 +160,7 @@ func (store *LevelDB2Store) ListDirectoryEntries(ctx context.Context, fullpath f
FullPath: filer2.NewFullPath(string(fullpath), fileName),
}
- println("list", entry.FullPath, "chunks", len(entry.Chunks))
+ // println("list", entry.FullPath, "chunks", len(entry.Chunks))
if decodeErr := entry.DecodeAttributesAndChunks(iter.Value()); decodeErr != nil {
err = decodeErr