Browse Source

HDDS-1954. StackOverflowError in OzoneClientInvocationHandler

Signed-off-by: Anu Engineer <aengineer@apache.org>
Doroszlai, Attila 5 years ago
parent
commit
46d61913ff

+ 1 - 1
hadoop-ozone/client/src/main/java/org/apache/hadoop/ozone/client/OzoneClientInvocationHandler.java

@@ -48,7 +48,7 @@ public class OzoneClientInvocationHandler implements InvocationHandler {
   @Override
   public Object invoke(Object proxy, Method method, Object[] args)
       throws Throwable {
-    LOG.trace("Invoking method {} on proxy {}", method, proxy);
+    LOG.trace("Invoking method {} on target {}", method, target);
     try {
       long startTime = Time.monotonicNow();
       Object result = method.invoke(target, args);