From 9ece140cdb08a5148793b2c3d78207481c1a1f9f Mon Sep 17 00:00:00 2001 From: senjyure Date: Tue, 9 Jul 2024 16:01:44 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9UIServer?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/bellmann/runner/InterfaceService.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/bellmann/runner/InterfaceService.java b/src/main/java/com/bellmann/runner/InterfaceService.java index eef138a..fb3c14f 100644 --- a/src/main/java/com/bellmann/runner/InterfaceService.java +++ b/src/main/java/com/bellmann/runner/InterfaceService.java @@ -22,9 +22,9 @@ public class InterfaceService extends ServiceManager { } @Override public boolean init() { - CAP.trDebug("Start init service INTERFACE"); + CAP.trDebug("Start init service UIServer"); if (!super.init()) { - CAP.trError("Failed to init QUERYService."); + CAP.trError("Failed to init UIServer."); return false; } service = this; @@ -41,7 +41,7 @@ public class InterfaceService extends ServiceManager { if(service != null){ return service; } - String[] arg = new String[] { "-ServerName", "INTERFACE" }; + String[] arg = new String[] { "-ServerName", "UIServer" }; service = new InterfaceService(arg); return service; }