I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Verified Commit e16c8051 authored by zzz's avatar zzz
Browse files

I2NP: Add msg ID to all build msg toString()

parent 857f52bb
No related branches found
No related tags found
No related merge requests found
......@@ -120,7 +120,8 @@ public class InboundTunnelBuildMessage extends TunnelBuildMessage {
public String toString() {
StringBuilder buf = new StringBuilder(64);
buf.append("[InboundTunnelBuildMessage: " +
"\n\tRecords: ").append(getRecordCount())
"\n\tID: ").append(getUniqueId())
.append("\n\tRecords: ").append(getRecordCount())
.append(']');
return buf.toString();
}
......
......@@ -120,7 +120,8 @@ public class OutboundTunnelBuildReplyMessage extends TunnelBuildReplyMessage {
public String toString() {
StringBuilder buf = new StringBuilder(64);
buf.append("[OutboundTunnelBuildReplyMessage: " +
"\n\tRecords: ").append(getRecordCount())
"\n\tID: ").append(getUniqueId())
.append("\n\tRecords: ").append(getRecordCount())
.append(']');
return buf.toString();
}
......
......@@ -66,7 +66,8 @@ public class ShortTunnelBuildMessage extends TunnelBuildMessage {
public String toString() {
StringBuilder buf = new StringBuilder(64);
buf.append("[ShortTunnelBuildMessage: " +
"\n\tRecords: ").append(getRecordCount())
"\n\tID: ").append(getUniqueId())
.append("\n\tRecords: ").append(getRecordCount())
.append(']');
return buf.toString();
}
......
......@@ -59,7 +59,8 @@ public class VariableTunnelBuildMessage extends TunnelBuildMessage {
public String toString() {
StringBuilder buf = new StringBuilder(64);
buf.append("[VariableTunnelBuildMessage: " +
"\n\tRecords: ").append(getRecordCount())
"\n\tID: ").append(getUniqueId())
.append("\n\tRecords: ").append(getRecordCount())
.append(']');
return buf.toString();
}
......
......@@ -62,7 +62,8 @@ public class VariableTunnelBuildReplyMessage extends TunnelBuildReplyMessage {
public String toString() {
StringBuilder buf = new StringBuilder(64);
buf.append("[VariableTunnelBuildReplyMessage: " +
"\n\tRecords: ").append(getRecordCount())
"\n\tID: ").append(getUniqueId())
.append("\n\tRecords: ").append(getRecordCount())
.append(']');
return buf.toString();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment