Skip to content

Commit

Permalink
Extended debug information.
Browse files Browse the repository at this point in the history
  • Loading branch information
saschaledermann committed Mar 4, 2024
1 parent 4271a20 commit 9cca05a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Scripts/UI/DebugDisplay.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ void HandleLog(string logString, string stackTrace, LogType type)
{
var splitString = logString.Split(char.Parse(":"));
var debugKey = splitString[0];
var debugValue = splitString.Length > 1 ? splitString[1] : "";
var debugValue = splitString.Length > 1 ? splitString[1] + " - " + stackTrace : "";

if (m_debugLogs.ContainsKey(debugKey))
m_debugLogs[debugKey] = debugValue;
Expand Down

0 comments on commit 9cca05a

Please sign in to comment.