HBASE-824 Bug in Hlog we print array of byes for region name

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@685341 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2008-08-12 22:11:52 +00:00
parent 0ce4989273
commit 991dd0ee76
2 changed files with 4 additions and 1 deletions

View File

@ -16,6 +16,8 @@ Release 0.3.0 - Unreleased
(Jean-Daniel Cryans via Stack)
HBASE-821 UnknownScanner happens too often (Jean-Daniel Cryans via Stack)
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)
IMPROVEMENTS

View File

@ -283,7 +283,8 @@ public class HLog implements HConstants {
LOG.debug("Found " + sequenceNumbers.size() +
" logs to remove " +
"using oldest outstanding seqnum of " +
oldestOutstandingSeqNum + " from region " + oldestRegion);
oldestOutstandingSeqNum + " from region " +
Bytes.toString(oldestRegion));
}
}
if (sequenceNumbers.size() > 0) {