Core/NetworkPackage/DebugPkgCache.cs
@@ -26,6 +26,23 @@ public static void UpLoad() { var _contents = new System.Text.StringBuilder(); foreach (var _content in m_List) { _contents.Append("["); _contents.Append(_content.dataTime); _contents.Append("]"); _contents.Append(_content.code); _contents.Append("\r\n"); } #if UNITY_EDITOR UnityEngine.Debug.Log("登陆异常: " + _contents.ToString()); #else ExceptionCatcher.ReportException("登陆异常", _contents.ToString()); #endif _contents = null; m_List.Clear(); } }