HBASE-1585 More binary key/value log output cleanup
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@788479 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1115f46d1e
commit
7fb19786ee
|
@ -221,6 +221,8 @@ Release 0.20.0 - Unreleased
|
|||
HBASE-1564 in UI make host addresses all look the same -- not IP sometimes
|
||||
and host at others
|
||||
HBASE-1567 cant serialize new filters
|
||||
HBASE-1585 More binary key/value log output cleanup
|
||||
(Lars George via Stack)
|
||||
|
||||
IMPROVEMENTS
|
||||
HBASE-1089 Add count of regions on filesystem to master UI; add percentage
|
||||
|
|
|
@ -1774,7 +1774,7 @@ public class HTable {
|
|||
if (CLIENT_LOG.isDebugEnabled()) {
|
||||
CLIENT_LOG.debug("Creating scanner over "
|
||||
+ Bytes.toString(getTableName())
|
||||
+ " starting at key '" + Bytes.toString(scan.getStartRow()) + "'");
|
||||
+ " starting at key '" + Bytes.toStringBinary(scan.getStartRow()) + "'");
|
||||
}
|
||||
this.scan = scan;
|
||||
this.lastNext = System.currentTimeMillis();
|
||||
|
@ -1833,7 +1833,7 @@ public class HTable {
|
|||
|
||||
if (CLIENT_LOG.isDebugEnabled()) {
|
||||
CLIENT_LOG.debug("Advancing internal scanner to startKey at '" +
|
||||
Bytes.toString(localStartKey) + "'");
|
||||
Bytes.toStringBinary(localStartKey) + "'");
|
||||
}
|
||||
|
||||
try {
|
||||
|
|
Loading…
Reference in New Issue