forked from I2P_Developers/i2p.i2p
tostring updates for debugging
This commit is contained in:
@@ -83,6 +83,8 @@ public class SessionKey extends DataStructureImpl {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
|
return "SessionKey " + toBase64();
|
||||||
|
/****
|
||||||
if (true) return super.toString();
|
if (true) return super.toString();
|
||||||
StringBuilder buf = new StringBuilder(64);
|
StringBuilder buf = new StringBuilder(64);
|
||||||
buf.append("[SessionKey: ");
|
buf.append("[SessionKey: ");
|
||||||
@@ -97,5 +99,6 @@ public class SessionKey extends DataStructureImpl {
|
|||||||
}
|
}
|
||||||
buf.append("]");
|
buf.append("]");
|
||||||
return buf.toString();
|
return buf.toString();
|
||||||
|
****/
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -58,4 +58,8 @@ public class SessionTag extends ByteArray {
|
|||||||
out.write(getData());
|
out.write(getData());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "SessionTag " + toBase64();
|
||||||
|
}
|
||||||
}
|
}
|
Reference in New Issue
Block a user