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 568d73d7db
commit 18d2c72207
1 changed files with 2 additions and 2 deletions

View File

@ -1841,8 +1841,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 pid={}, resume processing parent {}",
procedure.getProcId(), parent);
LOG.info("Finished subprocedure pid={}, resume processing ppid={}",
procedure.getProcId(), parent.getProcId());
return;
}
}