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

Skip to content
Snippets Groups Projects
Commit 1d1a05ee authored by zzz's avatar zzz
Browse files

log tweak

parent bbeb429a
No related branches found
No related tags found
No related merge requests found
...@@ -280,7 +280,10 @@ public class I2PSocketManagerFactory { ...@@ -280,7 +280,10 @@ public class I2PSocketManagerFactory {
SigType rv = SigType.parseSigType(st); SigType rv = SigType.parseSigType(st);
if (rv != null && rv.isAvailable()) if (rv != null && rv.isAvailable())
return rv; return rv;
getLog().error("Unsupported sig type " + st); if (rv != null)
st = rv.toString();
getLog().logAlways(Log.WARN, "Unsupported sig type " + st +
", reverting to " + I2PClient.DEFAULT_SIGTYPE);
} }
} }
return I2PClient.DEFAULT_SIGTYPE; return I2PClient.DEFAULT_SIGTYPE;
......
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