From bc20cdb7ee02f960f24ea50a4ba702d71dc67c4e Mon Sep 17 00:00:00 2001 From: Paul Lodge Date: Thu, 3 Aug 2023 16:50:43 +0200 Subject: [PATCH] Supressing the waitForTcp and checkTcpPort exception as it only hindered debugging --- core/src/main/groovy/noe/common/utils/Library.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/groovy/noe/common/utils/Library.groovy b/core/src/main/groovy/noe/common/utils/Library.groovy index a4ba00f9..fe4b3475 100644 --- a/core/src/main/groovy/noe/common/utils/Library.groovy +++ b/core/src/main/groovy/noe/common/utils/Library.groovy @@ -167,7 +167,7 @@ class Library { socket.shutdownOutput() return true } catch (IOException e) { - log.trace("checkTcpPort: TAGOTAG: host:port - ${host}:${port} is not ready", e) + log.trace("checkTcpPort: TAGOTAG: host:port - ${host}:${port} is not ready [${e.getMessage()}]") return false } finally { socket?.close() @@ -206,7 +206,7 @@ class Library { socket.shutdownOutput() return true } catch (IOException e) { - log.trace("waitForTcp: TAGOTAG: host:port - ${host}:${port} is not ready", e) + log.trace("waitForTcp: TAGOTAG: host:port - ${host}:${port} is not ready [${e.getMessage()}]") } finally { socket?.close() }