HDFS-11861. ipc.Client.Connection#sendRpcRequest should log request name. Contributed by John Zhuge.

(cherry picked from commit 5672ae7b37)
This commit is contained in:
John Zhuge 2017-06-07 15:54:08 -07:00
parent de4e4ec774
commit 2448d84572
1 changed files with 2 additions and 1 deletions

View File

@ -1111,7 +1111,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());