diff --git a/kyuubi-common/src/main/scala/org/apache/kyuubi/service/FrontendService.scala b/kyuubi-common/src/main/scala/org/apache/kyuubi/service/FrontendService.scala index 84f0c178c..107f46513 100644 --- a/kyuubi-common/src/main/scala/org/apache/kyuubi/service/FrontendService.scala +++ b/kyuubi-common/src/main/scala/org/apache/kyuubi/service/FrontendService.scala @@ -99,7 +99,8 @@ class FrontendService private (name: String, be: BackendService, oomHook: Runnab s" [$minThreads, $maxThreads] worker threads") } catch { case e: Throwable => - throw new KyuubiException("Failed to initialize frontend service", e) + throw new KyuubiException( + s"Failed to initialize frontend service on $serverAddr:$portNum.", e) } super.initialize(conf) }