We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f455df0 + 8bb3bc2 commit a260c89Copy full SHA for a260c89
src/App.axaml.cs
@@ -61,6 +61,12 @@ public static void Main(string[] args)
61
builder.Append($"Source: {ex.Source}\n");
62
builder.Append($"---------------------------\n\n");
63
builder.Append(ex.StackTrace);
64
+ while (ex.InnerException != null)
65
+ {
66
+ ex = ex.InnerException;
67
+ builder.Append($"\n\nInnerException::: {ex.GetType().FullName}: {ex.Message}\n");
68
+ builder.Append(ex.StackTrace);
69
+ }
70
71
var time = DateTime.Now.ToString("yyyy-MM-dd_HH-mm-ss");
72
var file = Path.Combine(Native.OS.DataDir, $"crash_{time}.log");
0 commit comments