From 5c265d3c112e7309dc3421accf5993f66b8e225a Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期四, 05 十二月 2024 18:05:18 +0800
Subject: [PATCH] 0312 开服七天排行榜支持分页查询显示;界面打开关闭如果报错增加后台汇报
---
System/WindowBase/Window.cs | 11 +++++++++++
1 files changed, 11 insertions(+), 0 deletions(-)
diff --git a/System/WindowBase/Window.cs b/System/WindowBase/Window.cs
index 1b49776..cb72b196 100644
--- a/System/WindowBase/Window.cs
+++ b/System/WindowBase/Window.cs
@@ -101,6 +101,7 @@
}
catch (System.Exception ex)
{
+ OperationLogCollect.Instance.BugReportSys(ex.ToString());
Debug.LogError(ex.StackTrace);
}
@@ -150,6 +151,7 @@
}
catch (System.Exception ex)
{
+ OperationLogCollect.Instance.BugReportSys(ex.ToString());
Debug.LogError(ex.StackTrace);
}
finally
@@ -173,6 +175,7 @@
}
catch (System.Exception ex)
{
+ OperationLogCollect.Instance.BugReportSys(ex.ToString());
Debug.LogError(ex.StackTrace);
}
@@ -200,6 +203,7 @@
}
catch (System.Exception ex)
{
+ OperationLogCollect.Instance.BugReportSys(ex.ToString());
Debug.LogError(ex.StackTrace);
}
@@ -224,6 +228,7 @@
}
catch (System.Exception ex)
{
+ OperationLogCollect.Instance.BugReportSys(ex.ToString());
Debug.LogError(ex.StackTrace);
}
@@ -302,6 +307,7 @@
}
catch (System.Exception ex)
{
+ OperationLogCollect.Instance.BugReportSys(ex.ToString());
Debug.LogError(ex.Message);
}
finally
@@ -320,6 +326,7 @@
}
catch (System.Exception ex)
{
+ OperationLogCollect.Instance.BugReportSys(ex.ToString());
Debug.LogError(ex.StackTrace);
}
finally
@@ -343,6 +350,7 @@
}
catch (System.Exception ex)
{
+ OperationLogCollect.Instance.BugReportSys(ex.ToString());
Debug.LogError(ex.StackTrace);
}
finally
@@ -376,6 +384,7 @@
}
catch (System.Exception ex)
{
+ OperationLogCollect.Instance.BugReportSys(ex.ToString());
Debug.LogError(ex.StackTrace);
}
}
@@ -388,6 +397,7 @@
}
catch (System.Exception ex)
{
+ OperationLogCollect.Instance.BugReportSys(ex.ToString());
Debug.LogError(ex.StackTrace);
}
finally
@@ -421,6 +431,7 @@
}
catch (System.Exception ex)
{
+ OperationLogCollect.Instance.BugReportSys(ex.ToString());
Debug.LogError(ex.StackTrace);
}
}
--
Gitblit v1.8.0