mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-11-17 00:07:49 +00:00
fix log on connection changed
This commit is contained in:
parent
6ed969addc
commit
a4109cd4c7
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue