mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-13 11:09:28 +08:00
Merge pull request #1778 from lances101/hotfix/detailed-aggregate-exception
Changed exception formatting back to default ToString call
This commit is contained in:
commit
d8006087a2
@ -37,10 +37,7 @@ namespace Wox
|
||||
content.AppendLine(ErrorReporting.DependenciesInfo());
|
||||
content.AppendLine($"Date: {DateTime.Now.ToString(CultureInfo.InvariantCulture)}");
|
||||
content.AppendLine("Exception:");
|
||||
content.AppendLine(exception.Source);
|
||||
content.AppendLine(exception.GetType().ToString());
|
||||
content.AppendLine(exception.Message);
|
||||
content.AppendLine(exception.StackTrace);
|
||||
content.AppendLine(exception.ToString());
|
||||
paragraph = new Paragraph();
|
||||
paragraph.Inlines.Add(content.ToString());
|
||||
ErrorTextbox.Document.Blocks.Add(paragraph);
|
||||
|
Loading…
Reference in New Issue
Block a user