felix 1 год назад
Родитель
Сommit
79438eda6f
2 измененных файлов с 2 добавлено и 1 удалено
  1. BIN
      FISLib.dll
  2. 2 1
      rpcForUSMachine.txt

+ 2 - 1
rpcForUSMachine.txt

@@ -16,6 +16,7 @@ class JsonRpcProxyForFISLib {
     this.platformHost = C_SHELL_RPC_DEFAULT_HOST,
   }) {
     _currentHost = host ?? "unknown";
+	_currentProtocol = "http";
   }
 
   /// 宿主平台代理地址
@@ -40,7 +41,7 @@ class JsonRpcProxyForFISLib {
 
   /// 设置服务主机地址
   void setServerHost(String address, [bool useSSL = false]) {
-    loggerAsyn(FISDeviceLogCategory.Error,
+    loggerAsyn(FISDeviceLogCategory.Info,
         'JsonRpcProxyForFISLib setServerHost :$address');
     _currentProtocol = useSSL ? "https" : "http";
     _currentHost = address;