From 02f3f5ad536edb8a6799bf90c5eb64e4888d0e48 Mon Sep 17 00:00:00 2001 From: Sebastian Stenzel Date: Thu, 16 Nov 2017 14:56:16 +0100 Subject: [PATCH] fixed log message [ci skip] --- .../java/org/cryptomator/launcher/InterProcessCommunicator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/launcher/src/main/java/org/cryptomator/launcher/InterProcessCommunicator.java b/main/launcher/src/main/java/org/cryptomator/launcher/InterProcessCommunicator.java index 7c2e56cf1..1c5770189 100644 --- a/main/launcher/src/main/java/org/cryptomator/launcher/InterProcessCommunicator.java +++ b/main/launcher/src/main/java/org/cryptomator/launcher/InterProcessCommunicator.java @@ -102,7 +102,7 @@ abstract class InterProcessCommunicator implements InterProcessCommunicationProt } try { int port = ClientCommunicator.readPort(portFilePath); - LOG.debug("Connecting to port {}..."); + LOG.debug("Connecting to port {}...", port); Registry registry = LocateRegistry.getRegistry("localhost", port, new ClientSocketFactory()); this.remote = (IpcProtocolRemote) registry.lookup(RMI_NAME); } catch (IOException e) {