Browse Source

fmt

pull/7526/head
chrislu 6 days ago
parent
commit
86ae3da174
  1. 2
      other/java/client/src/main/java/seaweedfs/client/SeaweedOutputStream.java

2
other/java/client/src/main/java/seaweedfs/client/SeaweedOutputStream.java

@ -98,7 +98,7 @@ public class SeaweedOutputStream extends OutputStream {
*/ */
public synchronized long getPos() { public synchronized long getPos() {
long currentPos = position + buffer.position(); long currentPos = position + buffer.position();
LOG.info("[DEBUG-2024] 📍 getPos() called: flushedPosition={} bufferPosition={} returning={} path={}",
LOG.info("[DEBUG-2024] 📍 getPos() called: flushedPosition={} bufferPosition={} returning={} path={}",
position, buffer.position(), currentPos, path); position, buffer.position(), currentPos, path);
return currentPos; return currentPos;
} }

Loading…
Cancel
Save