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

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

I2NP: lookup message debug output fixes

parent bbfd9435
No related branches found
No related tags found
No related merge requests found
...@@ -550,12 +550,13 @@ public class DatabaseLookupMessage extends FastI2NPMessageImpl { ...@@ -550,12 +550,13 @@ public class DatabaseLookupMessage extends FastI2NPMessageImpl {
buf.append(_key.toBase32()); buf.append(_key.toBase32());
else else
buf.append(_key); buf.append(_key);
if (_replyKey != null) if (_replyTunnel != null)
buf.append("\n\tReply GW: "); buf.append("\n\tReply GW: ");
else else
buf.append("\n\tFrom: "); buf.append("\n\tFrom: ");
buf.append(_fromHash); buf.append(_fromHash.toBase64());
buf.append("\n\tReply Tunnel: ").append(_replyTunnel); if (_replyTunnel != null)
buf.append("\n\tReply Tunnel: ").append(_replyTunnel);
if (_replyKey != null) if (_replyKey != null)
buf.append("\n\tReply Key: ").append(_replyKey); buf.append("\n\tReply Key: ").append(_replyKey);
if (_replyTag != null) if (_replyTag != null)
......
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