From ebc49b5a93a73b0d8bd667a951540d10a2b54ea1 Mon Sep 17 00:00:00 2001 From: Nikita Sokolov Date: Tue, 24 Sep 2024 12:44:09 +0400 Subject: [PATCH] suppress could not bind logs --- .../main/scala/tech/ytsaurus/spark/launcher/rest/Utils.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spark-cluster/src/main/scala/tech/ytsaurus/spark/launcher/rest/Utils.scala b/spark-cluster/src/main/scala/tech/ytsaurus/spark/launcher/rest/Utils.scala index 39b17866..aad8679c 100644 --- a/spark-cluster/src/main/scala/tech/ytsaurus/spark/launcher/rest/Utils.scala +++ b/spark-cluster/src/main/scala/tech/ytsaurus/spark/launcher/rest/Utils.scala @@ -62,7 +62,7 @@ object Utils { exception.setStackTrace(e.getStackTrace) throw exception } - log.info(s"Service$serviceString could not bind on port $tryPort. " + + log.debug(s"Service$serviceString could not bind on port $tryPort. " + s"Attempting port ${tryPort + 1}.") } }