Skip to content

Commit 1c4243e

Browse files
committed
v2.1.5: Final changes on all platforms
1 parent ddf47ca commit 1c4243e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Runtime/Model/BacktraceUnhandledException.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ private void CreateUnhandledExceptionLogInformation()
6868
{
6969
SourceCode = new BacktraceSourceCode()
7070
{
71-
Text = string.Format("Unity exception information\nMessage :{0}\nStack trace :{1}", _message, _stacktrace)
71+
Text = string.Format("Unity exception information\nMessage: {0}\nStack trace: {1}", _message, _stacktrace)
7272
};
7373
// assign log information to first stack frame
7474
if (StackFrames.Count == 0)

Tests/Runtime/BacktraceReportTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public void TestReportSourceCode_UnhandledExceptionSourceCode_ExceptionShouldHav
102102
Assert.AreEqual("Text", data.SourceCode.Type);
103103
Assert.AreEqual("Log File", data.SourceCode.Title);
104104
// test unhandled exception text - based on unhandled exception text algorithm
105-
Assert.AreEqual(string.Format("Unity exception information\nMessage :{0}\nStack trace :{1}", message, stackTrace), data.SourceCode.Text);
105+
Assert.AreEqual(string.Format("Unity exception information\nMessage: {0}\nStack trace: {1}", message, stackTrace), data.SourceCode.Text);
106106
}
107107

108108
[Test]

0 commit comments

Comments
 (0)