HBASE-15931 Add log for long-running tasks in AsyncProcess (addendum)

This commit is contained in:
Yu Li 2017-09-08 11:38:00 +08:00
parent 34d648808d
commit b56760c732
1 changed files with 1 additions and 1 deletions

View File

@ -448,7 +448,7 @@ class AsyncProcess {
LOG.info("#" + id + (max < 0 ? ", waiting for any free slot"
: ", waiting for some tasks to finish. Expected max="
+ max) + ", tasksInProgress=" + currentInProgress +
" hasError=" + hasError() + tableName == null ? "" : ", tableName=" + tableName);
" hasError=" + hasError() + (tableName == null ? "" : ", tableName=" + tableName));
};
}