|
@@ -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;
|