Skip to content
Snippets Groups Projects
Unverified Commit e5547a5a authored by akwizgran's avatar akwizgran
Browse files

Removed extra logging for Tor connection failures.

parent fbb3c0f9
No related branches found
No related tags found
No related merge requests found
...@@ -561,7 +561,7 @@ class TorPlugin implements DuplexPlugin, EventHandler, EventListener { ...@@ -561,7 +561,7 @@ class TorPlugin implements DuplexPlugin, EventHandler, EventListener {
return new TorTransportConnection(this, s); return new TorTransportConnection(this, s);
} catch (IOException e) { } catch (IOException e) {
if (LOG.isLoggable(INFO)) if (LOG.isLoggable(INFO))
LOG.log(INFO, "Could not connect to " + onion + ": ", e); LOG.info("Could not connect to " + onion + ": " + e.toString());
return null; return 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