forked from I2P_Developers/i2p.i2p
log tweaks
This commit is contained in:
@ -255,6 +255,8 @@ public class BlindData {
|
||||
buf.append("\n\tBlinded Hash : ").append(_blindHash);
|
||||
if (_secret != null)
|
||||
buf.append("\n\tSecret : \"").append(_secret).append('"');
|
||||
else
|
||||
buf.append("\n\tSecret Required : ").append(_secretRequired);
|
||||
buf.append("\n\tAuth Type : ");
|
||||
if (_authType > 0)
|
||||
buf.append(_authType);
|
||||
@ -262,6 +264,8 @@ public class BlindData {
|
||||
buf.append("none");
|
||||
if (_authKey != null)
|
||||
buf.append("\n\tAuth Key : ").append(_authKey);
|
||||
else
|
||||
buf.append("\n\tAuth Required : ").append(_authRequired);
|
||||
if (_dest != null)
|
||||
buf.append("\n\tDestination : ").append(_dest);
|
||||
else
|
||||
|
@ -99,7 +99,8 @@ class LookupDestJob extends JobImpl {
|
||||
}
|
||||
h = bd.getBlindedHash();
|
||||
if (_log.shouldDebug())
|
||||
_log.debug("Converting name lookup " + name + " to blinded " + h);
|
||||
_log.debug("Converting name lookup " + name + " to blinded " + h +
|
||||
" using BlindData:\n" + bd);
|
||||
name = null;
|
||||
} catch (RuntimeException re) {
|
||||
if (_log.shouldWarn())
|
||||
|
Reference in New Issue
Block a user