Skip to content

Commit

Permalink
HBASE-24669 Logging of ppid should be consistent across all occurrences
Browse files Browse the repository at this point in the history
Signed-off-by: Viraj Jasani <vjasani@apache.org>
Signed-off-by: Nick Dimiduk <ndimiduk@apache.org>
Signed-off-by: stack <stack@apache.org>
  • Loading branch information
niuyulin authored and saintstack committed Jul 29, 2020
1 parent 5480f35 commit 56f32ea
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1843,7 +1843,8 @@ private void countDownChildren(RootProcedureState<TEnvironment> procStack,
// children have completed, move parent to front of the queue.
store.update(parent);
scheduler.addFront(parent);
LOG.info("Finished subprocedure(s) of " + parent + "; resume parent processing.");
LOG.info("Finished subprocedure pid={}, resume processing ppid={}",
procedure.getProcId(), parent.getProcId());
return;
}
}
Expand Down

0 comments on commit 56f32ea

Please sign in to comment.