aboutsummaryrefslogtreecommitdiff
path: root/other/java/hdfs2/src/main
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2020-07-17 16:11:57 -0700
committerChris Lu <chris.lu@gmail.com>2020-07-17 16:11:57 -0700
commitf90d2c93c9e34997a8e76aeefb438ec06b1cd093 (patch)
tree3966daffbb7b2633906f883e3047511772a4fdcf /other/java/hdfs2/src/main
parent3abd74b1d7d1685ca4ddcd741ddf3ac0585b848a (diff)
downloadseaweedfs-f90d2c93c9e34997a8e76aeefb438ec06b1cd093.tar.xz
seaweedfs-f90d2c93c9e34997a8e76aeefb438ec06b1cd093.zip
1.3.9 remove logs
Diffstat (limited to 'other/java/hdfs2/src/main')
-rw-r--r--other/java/hdfs2/src/main/java/seaweed/hdfs/SeaweedOutputStream.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/other/java/hdfs2/src/main/java/seaweed/hdfs/SeaweedOutputStream.java b/other/java/hdfs2/src/main/java/seaweed/hdfs/SeaweedOutputStream.java
index c1e7b593d..46de0c443 100644
--- a/other/java/hdfs2/src/main/java/seaweed/hdfs/SeaweedOutputStream.java
+++ b/other/java/hdfs2/src/main/java/seaweed/hdfs/SeaweedOutputStream.java
@@ -184,9 +184,9 @@ public class SeaweedOutputStream extends OutputStream {
waitForTaskToComplete();
}
final Future<Void> job = completionService.submit(() -> {
- System.out.println(path + " is going to save [" + (writePosition) + "," + ((writePosition) + bytesLength) + ")");
+ // System.out.println(path + " is going to save [" + (writePosition) + "," + ((writePosition) + bytesLength) + ")");
SeaweedWrite.writeData(entry, replication, filerGrpcClient, writePosition, bufferToWrite.array(), bufferToWrite.position(), bufferToWrite.limit());
- System.out.println(path + " saved [" + (writePosition) + "," + ((writePosition) + bytesLength) + ")");
+ // System.out.println(path + " saved [" + (writePosition) + "," + ((writePosition) + bytesLength) + ")");
bufferToWrite.clear();
ByteBufferPool.release(bufferToWrite);
return null;