Adding even more logging to figure why we're reading old root region location though its been updated in zk -- for failing TestZooKeeper

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1004464 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2010-10-04 22:39:33 +00:00
parent 83802d7f17
commit 77dc443fc1
1 changed files with 1 additions and 1 deletions

View File

@ -1012,6 +1012,6 @@ public class ZKUtil {
LOG.debug(zkw.prefix("Retrieved " + ((data == null)? 0: data.length) +
" byte(s) of data from znode " + znode +
(watcherSet? " and set watcher; ": "; data=") +
(data == null? "null": StringUtils.abbreviate(Bytes.toString(data), 128))));
(data == null? "null": StringUtils.abbreviate(Bytes.toString(data), 64))));
}
}