diff --git a/BulkCargo_UnityProject/Assets/Scripts/cxx/CallForTest.cs b/BulkCargo_UnityProject/Assets/Scripts/cxx/CallForTest.cs index 4fff31b4..bdfa1e88 100644 --- a/BulkCargo_UnityProject/Assets/Scripts/cxx/CallForTest.cs +++ b/BulkCargo_UnityProject/Assets/Scripts/cxx/CallForTest.cs @@ -74,16 +74,19 @@ public class CallForTest : MonoBehaviour if (!string.IsNullOrEmpty(code)) { customCode = code.Replace("code=", ""); + Debug.Log("启动参数关区:" + customCode); } if (!string.IsNullOrEmpty(enterprise_code)) { - MONITOR_ID = enterprise_code.Replace("enterprise_code=", ""); + MONITOR_ID = enterprise_code.Replace("enterprise_code=", ""); + Debug.Log("启动参数企业:" + MONITOR_ID); } if (!string.IsNullOrEmpty(config_value)) { - ServerIP = config_value.Replace("config_value=", ""); + ServerIP = config_value.Replace("config_value=", ""); + Debug.Log("启动参数服务器:" + ServerIP); }