Fix missing space in log message.

This commit is contained in:
akwizgran
2022-05-30 17:19:36 +01:00
parent 285a5f2928
commit 0092f38bab

View File

@@ -1106,7 +1106,7 @@ abstract class TorPlugin implements DuplexPlugin, EventHandler, EventListener {
@GuardedBy("this")
private void logOrConnections() {
if (LOG.isLoggable(INFO)) {
LOG.info(orConnectionsConnected + "OR connections connected");
LOG.info(orConnectionsConnected + " OR connections connected");
}
}
}