Better logging on artery start when bind address used
This commit is contained in:
commit
59cae4d07b
2 changed files with 10 additions and 4 deletions
|
|
@ -1 +0,0 @@
|
|||
1.8
|
||||
|
|
@ -459,9 +459,16 @@ private[remote] abstract class ArteryTransport(_system: ExtendedActorSystem, _pr
|
|||
|
||||
startRemoveQuarantinedAssociationTask()
|
||||
|
||||
log.info(
|
||||
"Remoting started with transport [Artery {}]; listening on address [{}] with UID [{}]",
|
||||
settings.Transport, localAddress.address, localAddress.uid)
|
||||
if (localAddress.address == bindAddress.address)
|
||||
log.info(
|
||||
"Remoting started with transport [Artery {}]; listening on address [{}] with UID [{}]",
|
||||
settings.Transport, bindAddress.address, bindAddress.uid)
|
||||
else {
|
||||
log.info(
|
||||
s"Remoting started with transport [Artery ${settings.Transport}]; listening on address [{}] and bound to [{}] with UID [{}]",
|
||||
localAddress.address, bindAddress.address, localAddress.uid)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
protected def startTransport(): Unit
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue