Skip to content

Commit

Permalink
v2.1.5: Final changes on all platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
konraddysput committed Jun 3, 2020
1 parent ddf47ca commit 1c4243e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Runtime/Model/BacktraceUnhandledException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ private void CreateUnhandledExceptionLogInformation()
{
SourceCode = new BacktraceSourceCode()
{
Text = string.Format("Unity exception information\nMessage :{0}\nStack trace :{1}", _message, _stacktrace)
Text = string.Format("Unity exception information\nMessage: {0}\nStack trace: {1}", _message, _stacktrace)
};
// assign log information to first stack frame
if (StackFrames.Count == 0)
Expand Down
2 changes: 1 addition & 1 deletion Tests/Runtime/BacktraceReportTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public void TestReportSourceCode_UnhandledExceptionSourceCode_ExceptionShouldHav
Assert.AreEqual("Text", data.SourceCode.Type);
Assert.AreEqual("Log File", data.SourceCode.Title);
// test unhandled exception text - based on unhandled exception text algorithm
Assert.AreEqual(string.Format("Unity exception information\nMessage :{0}\nStack trace :{1}", message, stackTrace), data.SourceCode.Text);
Assert.AreEqual(string.Format("Unity exception information\nMessage: {0}\nStack trace: {1}", message, stackTrace), data.SourceCode.Text);
}

[Test]
Expand Down

0 comments on commit 1c4243e

Please sign in to comment.