From 86ae3da1749fa24a9b45f94acc552323ba517419 Mon Sep 17 00:00:00 2001 From: chrislu Date: Sun, 23 Nov 2025 12:15:46 -0800 Subject: [PATCH] fmt --- .../src/main/java/seaweedfs/client/SeaweedOutputStream.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/other/java/client/src/main/java/seaweedfs/client/SeaweedOutputStream.java b/other/java/client/src/main/java/seaweedfs/client/SeaweedOutputStream.java index b0d79b26c..07ce080de 100644 --- a/other/java/client/src/main/java/seaweedfs/client/SeaweedOutputStream.java +++ b/other/java/client/src/main/java/seaweedfs/client/SeaweedOutputStream.java @@ -98,7 +98,7 @@ public class SeaweedOutputStream extends OutputStream { */ public synchronized long getPos() { 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); return currentPos; }