Index: hbase-client/src/main/java/org/apache/hadoop/hbase/client/ServerCallable.java =================================================================== --- hbase-client/src/main/java/org/apache/hadoop/hbase/client/ServerCallable.java (revision 1489711) +++ hbase-client/src/main/java/org/apache/hadoop/hbase/client/ServerCallable.java (working copy) @@ -95,7 +95,7 @@ public void prepare(final boolean reload) throws IOException { this.location = connection.getRegionLocation(tableName, row, reload); if (this.location == null) { - throw new IOException("Failed to find location, tableName=" + tableName + ", row=" + + throw new IOException("Failed to find location, tableName=" + Bytes.toString(tableName) + ", row=" + Bytes.toString(row) + ", reload=" + reload); } this.stub = connection.getClient(location.getServerName());