Repository: hadoop Updated Branches: refs/heads/trunk df35e4cc3 -> 5672ae7b3
HDFS-11861. ipc.Client.Connection#sendRpcRequest should log request name. Contributed by John Zhuge. Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/5672ae7b Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/5672ae7b Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/5672ae7b Branch: refs/heads/trunk Commit: 5672ae7b37ce75086a1cb5bb9a388288fc913eb7 Parents: df35e4c Author: John Zhuge <[email protected]> Authored: Sun May 21 00:18:35 2017 -0700 Committer: John Zhuge <[email protected]> Committed: Wed Jun 7 15:52:52 2017 -0700 ---------------------------------------------------------------------- .../hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/5672ae7b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java index c0a5be9..6b21c75 100644 --- a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java +++ b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java @@ -1109,7 +1109,8 @@ public class Client implements AutoCloseable { return; } if (LOG.isDebugEnabled()) { - LOG.debug(getName() + " sending #" + call.id); + LOG.debug(getName() + " sending #" + call.id + + " " + call.rpcRequest); } // RpcRequestHeader + RpcRequest ipcStreams.sendRequest(buf.toByteArray()); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
