HBASE-21899 Fix missing variables for slf4j Logger
Signed-off-by: Toshihiro Suzuki <brfrn169@gmail.com>
This commit is contained in:
parent
d88a87fd04
commit
98c6ab68c1
|
@ -88,7 +88,7 @@ public class ReopenTableRegionsProcedure
|
|||
switch (state) {
|
||||
case REOPEN_TABLE_REGIONS_GET_REGIONS:
|
||||
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;
|
||||
}
|
||||
regions =
|
||||
|
|
|
@ -255,7 +255,7 @@ class SerialReplicationChecker {
|
|||
// has been moved to another RS and then back, so we need to check the barrier.
|
||||
MutableLong previousPushedSeqId = pushed.getUnchecked(encodedNameAsString);
|
||||
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();
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue