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()
|
startRemoveQuarantinedAssociationTask()
|
||||||
|
|
||||||
log.info(
|
if (localAddress.address == bindAddress.address)
|
||||||
"Remoting started with transport [Artery {}]; listening on address [{}] with UID [{}]",
|
log.info(
|
||||||
settings.Transport, localAddress.address, localAddress.uid)
|
"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
|
protected def startTransport(): Unit
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue