Skip to content

Commit

Permalink
Put stack trace in a log message
Browse files Browse the repository at this point in the history
  • Loading branch information
Deadpikle committed Jun 5, 2023
1 parent af5dd8b commit 3119481
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NetSparkle/SparkleUpdater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ await Task.Factory.StartNew(() =>
}
catch (Exception e)
{
LogWriter.PrintMessage("Couldn't read/parse the app cast: {0}", e.Message);
LogWriter.PrintMessage("Couldn't read/parse the app cast: {0}; {1}", e.Message, e.StackTrace);
updates = null;
}

Expand Down

0 comments on commit 3119481

Please sign in to comment.