From ed93c3697ca79af28af66133a3c5c1a4913dc75f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20B=C3=BChler?= <17296905+buehlefs@users.noreply.github.com> Date: Wed, 13 Sep 2023 15:17:06 +0200 Subject: [PATCH] Output the port the service will bind to in console --- main.bal | 1 + 1 file changed, 1 insertion(+) diff --git a/main.bal b/main.bal index 108047f..64f449c 100644 --- a/main.bal +++ b/main.bal @@ -75,6 +75,7 @@ function getPort() returns int { // error should never happen if regex is correct... } } + log:printInfo("Binding to port " + port.toBalString()); return port; }