output UID only once for bind and local addresses

This commit is contained in:
Yoel García Díaz 2019-03-07 12:33:35 +00:00
parent 85ac56d20c
commit 3605aff283
2 changed files with 3 additions and 3 deletions

View file

@ -1 +1 @@
1.8
1.8.0.192

View file

@ -465,8 +465,8 @@ private[remote] abstract class ArteryTransport(_system: ExtendedActorSystem, _pr
settings.Transport, bindAddress.address, bindAddress.uid)
else {
log.info(
s"Remoting started with transport [Artery ${settings.Transport}]; listening on address [{}] with UID [{}] and bound to [{}] with UID [{}]",
localAddress.address, localAddress.uid, bindAddress.address, bindAddress.uid)
s"Remoting started with transport [Artery ${settings.Transport}]; listening on address [{}] and bound to [{}] with UID [{}]",
localAddress.address, bindAddress.address, localAddress.uid)
}
}