From 90f5e4297fd5265e7ac28af49236883a777e3607 Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期一, 12 一月 2026 16:29:10 +0800
Subject: [PATCH] 0312 聊天测试
---
Main/Utility/OperationLogCollect.cs | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/Main/Utility/OperationLogCollect.cs b/Main/Utility/OperationLogCollect.cs
index 3811b0f..8efe638 100644
--- a/Main/Utility/OperationLogCollect.cs
+++ b/Main/Utility/OperationLogCollect.cs
@@ -190,7 +190,9 @@
const string chatReportUrl = "http://xssgcenter.secondworld.net.cn:11000/center/eventreport.php?";
public void ChatReport(string content, string channelName, string toPlayer, int chatType)
{
+ Debug.Log("鑱婂ぉ");
#if !UNITY_EDITOR
+ Debug.Log("鑱婂ぉ11111111");
bool isFairy = chatType == 3;
var tables = new Dictionary<string, string>();
tables["ProductID"] = VersionConfig.Get().gameId;
@@ -211,8 +213,9 @@
tables["VIPLevel"] = PlayerDatas.Instance.baseData.VIPLv.ToString();
tables["Content"] = WWW.EscapeURL(UIHelper.TrimContentToServer(content));
tables["DeviceFlag"] = SDKUtils.Instance.Device == null ? string.Empty : SDKUtils.Instance.Device.uniqueID;
-
- HttpRequest.Instance.RequestHttpGet(StringUtility.Concat(chatReportUrl, HttpRequest.HashtablaToString(tables)), HttpRequest.defaultHttpContentType);
+ var chatStr = StringUtility.Concat(chatReportUrl, HttpRequest.HashtablaToString(tables));
+ Debug.Log("鑱婂ぉ: "+chatStr);
+ HttpRequest.Instance.RequestHttpGet(chatStr, HttpRequest.defaultHttpContentType);
#endif
}
--
Gitblit v1.8.0