HBASE-825 master logs showing byte[] in place of string on logging
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@685397 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e1ab934e5d
commit
e1f22ab399
|
@ -18,7 +18,8 @@ Release 0.3.0 - Unreleased
|
|||
HBASE-813 Add a row counter in the new shell (Jean-Daniel Cryans via Stack)
|
||||
HBASE-824 Bug in Hlog we print array of byes for region name
|
||||
(Billy Pearson via Stack)
|
||||
|
||||
HBASE-825 Master logs showing byte [] in place of string in logging
|
||||
(Billy Pearson via Stack)
|
||||
|
||||
IMPROVEMENTS
|
||||
HBASE-801 When a table haven't disable, shell could response in a "user
|
||||
|
|
|
@ -418,7 +418,7 @@ class RegionManager implements HConstants {
|
|||
}
|
||||
|
||||
if (isClosing(currentRegion.getRegionName())) {
|
||||
LOG.info("Skipping region " + currentRegion.getRegionName()
|
||||
LOG.info("Skipping region " + currentRegion.getRegionNameAsString()
|
||||
+ " because it is already closing.");
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue