mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
fix: print Type Name in crash log
This commit is contained in:
parent
aad91ea834
commit
0ffc30d58f
1 changed files with 1 additions and 3 deletions
|
@ -53,9 +53,7 @@ namespace SourceGit
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
var builder = new StringBuilder();
|
var builder = new StringBuilder();
|
||||||
builder.Append("Crash: ");
|
builder.Append($"Crash::: {ex.GetType().FullName}: {ex.Message}\n\n");
|
||||||
builder.Append(ex.Message);
|
|
||||||
builder.Append("\n\n");
|
|
||||||
builder.Append("----------------------------\n");
|
builder.Append("----------------------------\n");
|
||||||
builder.Append($"Version: {Assembly.GetExecutingAssembly().GetName().Version}\n");
|
builder.Append($"Version: {Assembly.GetExecutingAssembly().GetName().Version}\n");
|
||||||
builder.Append($"OS: {Environment.OSVersion.ToString()}\n");
|
builder.Append($"OS: {Environment.OSVersion.ToString()}\n");
|
||||||
|
|
Loading…
Reference in a new issue