=htc #15711 fix Http.Bind failure warning message

This commit is contained in:
Johannes Rudolph 2014-08-21 13:01:14 +02:00
parent d2e94e6207
commit 7075564281

View file

@ -69,7 +69,7 @@ private[http] class HttpManager(httpSettings: HttpExt#Settings) extends Actor wi
commander ! Http.ServerBinding(localAddress, httpConnectionStream)
case Failure(error)
log.warning("Bind to {} failed due to ", endpoint, error)
log.warning("Bind to {} failed due to {}", endpoint, error)
commander ! Status.Failure(Http.BindFailedException)
case x throw new IllegalStateException("Unexpected response to `Bind` from StreamTcp: " + x)