|
@@ -315,11 +315,10 @@ public class ProtoOverHadoopRpcEngine implements RpcEngine {
|
|
|
ProtoSpecificRequestWritable request = (ProtoSpecificRequestWritable) writableRequest;
|
|
|
ProtoSpecificRpcRequest rpcRequest = request.message;
|
|
|
String methodName = rpcRequest.getMethodName();
|
|
|
- System.out.println("Call: protocol=" + protocol + ", method="
|
|
|
- + methodName);
|
|
|
- if (verbose)
|
|
|
+ if (verbose) {
|
|
|
log("Call: protocol=" + protocol + ", method="
|
|
|
+ methodName);
|
|
|
+ }
|
|
|
MethodDescriptor methodDescriptor = service.getDescriptorForType()
|
|
|
.findMethodByName(methodName);
|
|
|
if (methodDescriptor == null) {
|