HBASE-24797 Move log code out of loop
Closes #2175 Signed-off-by: Viraj Jasani <vjasani@apache.org>
This commit is contained in:
parent
f07f30ae24
commit
1b9269de4d
|
@ -1973,11 +1973,11 @@ public class HMaster extends HRegionServer implements MasterServices {
|
||||||
mergePlanCount++;
|
mergePlanCount++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
int totalPlansSubmitted = submittedPlanProcIds.size();
|
}
|
||||||
if (totalPlansSubmitted > 0 && LOG.isDebugEnabled()) {
|
int totalPlansSubmitted = submittedPlanProcIds.size();
|
||||||
LOG.debug("Normalizer plans submitted. Total plans count: {} , procID list: {}",
|
if (totalPlansSubmitted > 0 && LOG.isDebugEnabled()) {
|
||||||
|
LOG.debug("Normalizer plans submitted. Total plans count: {} , procID list: {}",
|
||||||
totalPlansSubmitted, submittedPlanProcIds);
|
totalPlansSubmitted, submittedPlanProcIds);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
} finally {
|
} finally {
|
||||||
normalizationInProgressLock.unlock();
|
normalizationInProgressLock.unlock();
|
||||||
|
|
Loading…
Reference in New Issue