diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-07-17 16:11:57 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-07-17 16:11:57 -0700 |
| commit | f90d2c93c9e34997a8e76aeefb438ec06b1cd093 (patch) | |
| tree | 3966daffbb7b2633906f883e3047511772a4fdcf /other/java/hdfs3/src | |
| parent | 3abd74b1d7d1685ca4ddcd741ddf3ac0585b848a (diff) | |
| download | seaweedfs-f90d2c93c9e34997a8e76aeefb438ec06b1cd093.tar.xz seaweedfs-f90d2c93c9e34997a8e76aeefb438ec06b1cd093.zip | |
1.3.9 remove logs
Diffstat (limited to 'other/java/hdfs3/src')
| -rw-r--r-- | other/java/hdfs3/src/main/java/seaweed/hdfs/SeaweedOutputStream.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/other/java/hdfs3/src/main/java/seaweed/hdfs/SeaweedOutputStream.java b/other/java/hdfs3/src/main/java/seaweed/hdfs/SeaweedOutputStream.java index d5c8ae521..c602a0d81 100644 --- a/other/java/hdfs3/src/main/java/seaweed/hdfs/SeaweedOutputStream.java +++ b/other/java/hdfs3/src/main/java/seaweed/hdfs/SeaweedOutputStream.java @@ -231,9 +231,9 @@ public class SeaweedOutputStream extends OutputStream implements Syncable, Strea 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; |
