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)