Removed extra logging for Tor connection failures.

This commit is contained in:
akwizgran
2016-05-04 12:18:19 +01:00
parent fbb3c0f9f2
commit e5547a5a12

View File

@@ -561,7 +561,7 @@ class TorPlugin implements DuplexPlugin, EventHandler, EventListener {
return new TorTransportConnection(this, s);
} catch (IOException e) {
if (LOG.isLoggable(INFO))
LOG.log(INFO, "Could not connect to " + onion + ": ", e);
LOG.info("Could not connect to " + onion + ": " + e.toString());
return null;
}
}