From 7075564281df6d3811753a5fe0d00009f007f302 Mon Sep 17 00:00:00 2001 From: Johannes Rudolph Date: Thu, 21 Aug 2014 13:01:14 +0200 Subject: [PATCH] =htc #15711 fix Http.Bind failure warning message --- akka-http-core/src/main/scala/akka/http/HttpManager.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-http-core/src/main/scala/akka/http/HttpManager.scala b/akka-http-core/src/main/scala/akka/http/HttpManager.scala index 455e3f3504..c265d32830 100644 --- a/akka-http-core/src/main/scala/akka/http/HttpManager.scala +++ b/akka-http-core/src/main/scala/akka/http/HttpManager.scala @@ -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)