HBASE-24669 Logging of ppid should be consistent across all occurrences

Signed-off-by: Viraj Jasani <vjasani@apache.org>
Signed-off-by: Nick Dimiduk <ndimiduk@apache.org>
Signed-off-by: stack <stack@apache.org>
This commit is contained in:
niuyulin 2020-07-05 10:32:19 +08:00 committed by stack
parent 5480f350c2
commit 56f32ea895
1 changed files with 2 additions and 1 deletions

View File

@ -1843,7 +1843,8 @@ public class ProcedureExecutor<TEnvironment> {
// 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;
}
}