From 4c6548107a00ad64fa7196295ea45049025c059d Mon Sep 17 00:00:00 2001 From: Mike Hearn Date: Tue, 21 Mar 2017 14:22:07 +0100 Subject: [PATCH] Minor: don't repeat the legal name of the node multiple times in the output (which causes indentation issues) --- .../corda/node/services/messaging/ArtemisMessagingServer.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node/src/main/kotlin/net/corda/node/services/messaging/ArtemisMessagingServer.kt b/node/src/main/kotlin/net/corda/node/services/messaging/ArtemisMessagingServer.kt index 83456c525e..e0d5de8d5d 100644 --- a/node/src/main/kotlin/net/corda/node/services/messaging/ArtemisMessagingServer.kt +++ b/node/src/main/kotlin/net/corda/node/services/messaging/ArtemisMessagingServer.kt @@ -142,9 +142,9 @@ class ArtemisMessagingServer(override val config: NodeConfiguration, registerPostQueueDeletionCallback { address, qName -> log.debug { "Queue deleted: $qName for $address" } } } activeMQServer.start() - printBasicNodeInfo("Node ${this.config.myLegalName} listening on address", p2pHostPort.toString()) + printBasicNodeInfo("Listening on address", p2pHostPort.toString()) if (rpcHostPort != null) { - printBasicNodeInfo("Node ${this.config.myLegalName} RPC service listening on address", rpcHostPort.toString()) + printBasicNodeInfo("RPC service listening on address", rpcHostPort.toString()) } }