HDFS-3925. Prettify PipelineAck#toString() for printing to a log. Contributed by Andrew Wang.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1384079 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Todd Lipcon 2012-09-12 18:33:03 +00:00
parent 797e4760d9
commit 4c983a3108
2 changed files with 6 additions and 1 deletions

View File

@ -10,6 +10,9 @@ Release 2.0.3-alpha - Unreleased
(Jaimin D Jetly and Jing Zhao via szetszwo)
IMPROVEMENTS
HDFS-3925. Prettify PipelineAck#toString() for printing to a log
(Andrew Wang via todd)
OPTIMIZATIONS

View File

@ -30,6 +30,8 @@
import org.apache.hadoop.hdfs.protocol.proto.DataTransferProtos.PipelineAckProto;
import org.apache.hadoop.hdfs.protocol.proto.DataTransferProtos.Status;
import com.google.protobuf.TextFormat;
/** Pipeline Acknowledgment **/
@InterfaceAudience.Private
@InterfaceStability.Evolving
@ -120,6 +122,6 @@ public void write(OutputStream out) throws IOException {
@Override //Object
public String toString() {
return proto.toString();
return TextFormat.shortDebugString(proto);
}
}