HBASE-21899 Fix missing variables for slf4j Logger

Signed-off-by: Toshihiro Suzuki <brfrn169@gmail.com>
This commit is contained in:
Daisuke Kobayashi 2019-02-14 18:10:19 +09:00 committed by Toshihiro Suzuki
parent dedab71381
commit 40e1d9174e
2 changed files with 2 additions and 2 deletions

View File

@ -88,7 +88,7 @@ public class ReopenTableRegionsProcedure
switch (state) { switch (state) {
case REOPEN_TABLE_REGIONS_GET_REGIONS: case REOPEN_TABLE_REGIONS_GET_REGIONS:
if (!env.getAssignmentManager().isTableEnabled(tableName)) { if (!env.getAssignmentManager().isTableEnabled(tableName)) {
LOG.info("Table {} is disabled, give up reopening its regions"); LOG.info("Table {} is disabled, give up reopening its regions", tableName);
return Flow.NO_MORE_STATE; return Flow.NO_MORE_STATE;
} }
regions = regions =

View File

@ -255,7 +255,7 @@ class SerialReplicationChecker {
// has been moved to another RS and then back, so we need to check the barrier. // has been moved to another RS and then back, so we need to check the barrier.
MutableLong previousPushedSeqId = pushed.getUnchecked(encodedNameAsString); MutableLong previousPushedSeqId = pushed.getUnchecked(encodedNameAsString);
if (seqId == previousPushedSeqId.longValue() + 1) { if (seqId == previousPushedSeqId.longValue() + 1) {
LOG.trace("The sequence id for {} is continuous, pass"); LOG.trace("The sequence id for {} is continuous, pass", entry);
previousPushedSeqId.increment(); previousPushedSeqId.increment();
return true; return true;
} }