Skip to content

Commit

Permalink
HADOOP-18082.Add debug log when RPC#Reader gets a Call.
Browse files Browse the repository at this point in the history
  • Loading branch information
jianghuazhu committed Jan 24, 2022
1 parent a94e9fc commit 8554c43
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3046,6 +3046,9 @@ private void internalQueueCall(Call call, boolean blocking)
} else {
callQueue.add(call);
}

LOG.debug("Call has entered the CallQueue and is waiting to be processed. " +
"Call details: {}", call);
long deltaNanos = Time.monotonicNowNanos() - call.timestampNanos;
call.getProcessingDetails().set(Timing.ENQUEUE, deltaNanos,
TimeUnit.NANOSECONDS);
Expand Down

0 comments on commit 8554c43

Please sign in to comment.