From a4109cd4c7ed063fa9d0bc766f2f12d3f0098cb1 Mon Sep 17 00:00:00 2001 From: woodser Date: Wed, 26 Apr 2023 16:48:34 -0400 Subject: [PATCH] fix log on connection changed --- .../main/java/haveno/core/api/CoreMoneroConnectionsService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/haveno/core/api/CoreMoneroConnectionsService.java b/core/src/main/java/haveno/core/api/CoreMoneroConnectionsService.java index fb67a95f..17e84887 100644 --- a/core/src/main/java/haveno/core/api/CoreMoneroConnectionsService.java +++ b/core/src/main/java/haveno/core/api/CoreMoneroConnectionsService.java @@ -481,7 +481,7 @@ public final class CoreMoneroConnectionsService { } private void onConnectionChanged(MoneroRpcConnection currentConnection) { - log.info("CoreMoneroConnetionsService.onConnectionChanged() uri={}, connected=", currentConnection == null ? null : currentConnection.getUri(), currentConnection == null ? "false" : currentConnection.isConnected()); + log.info("CoreMoneroConnectionsService.onConnectionChanged() uri={}, connected={}", currentConnection == null ? null : currentConnection.getUri(), currentConnection == null ? "false" : currentConnection.isConnected()); if (isShutDownStarted) return; synchronized (lock) { if (currentConnection == null) {