From ea6159d41bc0f6accecc382cbf9c32c089c55a77 Mon Sep 17 00:00:00 2001 From: CaiHQ Date: Sun, 12 Dec 2021 12:46:04 +0800 Subject: [PATCH] fix port output bugs --- src/main/base/org/bdware/sc/conn/ServiceServer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/base/org/bdware/sc/conn/ServiceServer.java b/src/main/base/org/bdware/sc/conn/ServiceServer.java index bae1a6b..4d6b0c0 100644 --- a/src/main/base/org/bdware/sc/conn/ServiceServer.java +++ b/src/main/base/org/bdware/sc/conn/ServiceServer.java @@ -88,7 +88,7 @@ public class ServiceServer extends Thread { } } //TODO MUST use System.out to ensure output - LOGGER.info("ServiceServer mainPort " + mainPort); + System.out.println("ServiceServer mainPort " + mainPort); try { channel.closeFuture().await(); } catch (InterruptedException e) {