mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-24 20:57:19 -08:00
rename<CrashInfo>: rename Models.Issue to Models.CrashInfo
This commit is contained in:
parent
838e688a0c
commit
0966baa1d8
2 changed files with 7 additions and 7 deletions
|
@ -39,8 +39,8 @@ namespace SourceGit {
|
||||||
protected override void OnStartup(StartupEventArgs e) {
|
protected override void OnStartup(StartupEventArgs e) {
|
||||||
base.OnStartup(e);
|
base.OnStartup(e);
|
||||||
|
|
||||||
// 崩溃上报
|
// 崩溃文件生成
|
||||||
AppDomain.CurrentDomain.UnhandledException += (_, ev) => Models.Issue.Create(ev.ExceptionObject as Exception);
|
AppDomain.CurrentDomain.UnhandledException += (_, ev) => Models.CrashInfo.Create(ev.ExceptionObject as Exception);
|
||||||
|
|
||||||
// 创建必要目录
|
// 创建必要目录
|
||||||
if (!Directory.Exists(Views.Controls.Avatar.CACHE_PATH)) {
|
if (!Directory.Exists(Views.Controls.Avatar.CACHE_PATH)) {
|
||||||
|
|
|
@ -8,17 +8,17 @@ namespace SourceGit.Models {
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 崩溃日志生成
|
/// 崩溃日志生成
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class Issue {
|
public class CrashInfo {
|
||||||
public static void Create(System.Exception e) {
|
public static void Create(Exception e) {
|
||||||
var builder = new StringBuilder();
|
var builder = new StringBuilder();
|
||||||
builder.Append("Crash: ");
|
builder.Append("Crash: ");
|
||||||
builder.Append(e.Message);
|
builder.Append(e.Message);
|
||||||
builder.Append("\n\n");
|
builder.Append("\n\n");
|
||||||
builder.Append("----------------------------\n");
|
builder.Append("----------------------------\n");
|
||||||
builder.Append($"Windows OS: {Environment.OSVersion}\n");
|
builder.Append($"Windows OS: {Environment.OSVersion}\n");
|
||||||
builder.Append($"Version: {Assembly.GetExecutingAssembly().GetName().Version}");
|
builder.Append($"Version: {Assembly.GetExecutingAssembly().GetName().Version}\n");
|
||||||
builder.Append($"Platform: {AppDomain.CurrentDomain.SetupInformation.TargetFrameworkName}");
|
builder.Append($"Platform: {AppDomain.CurrentDomain.SetupInformation.TargetFrameworkName}\n");
|
||||||
builder.Append($"Source: {e.Source}");
|
builder.Append($"Source: {e.Source}\n");
|
||||||
builder.Append($"---------------------------\n\n");
|
builder.Append($"---------------------------\n\n");
|
||||||
builder.Append(e.StackTrace);
|
builder.Append(e.StackTrace);
|
||||||
|
|
Loading…
Reference in a new issue