Fix not capturing the the Debug.Log line in the DebugLogWindow
This commit is contained in:
@@ -544,7 +544,7 @@ namespace FlaxEditor.Windows
|
|||||||
if (noLocation)
|
if (noLocation)
|
||||||
{
|
{
|
||||||
desc.LocationFile = match.Groups[2].Value;
|
desc.LocationFile = match.Groups[2].Value;
|
||||||
int.TryParse(match.Groups[5].Value, out desc.LocationLine);
|
int.TryParse(match.Groups[4].Value, out desc.LocationLine);
|
||||||
noLocation = false;
|
noLocation = false;
|
||||||
}
|
}
|
||||||
fineStackTrace.AppendLine(match.Groups[0].Value);
|
fineStackTrace.AppendLine(match.Groups[0].Value);
|
||||||
|
|||||||
Reference in New Issue
Block a user