Add stacktrace to action error logs (#26486)

Add trace to action error logs
This commit is contained in:
Leon Friedrich
2024-03-28 14:16:13 +13:00
committed by GitHub
parent 37b8d78dac
commit 92a444311f

View File

@@ -124,7 +124,7 @@ public abstract class SharedActionsSystem : EntitySystem
return true;
if (logError)
Log.Error($"Failed to get action from action entity: {ToPrettyString(uid.Value)}");
Log.Error($"Failed to get action from action entity: {ToPrettyString(uid.Value)}. Trace: {Environment.StackTrace}");
return false;
}
@@ -804,7 +804,7 @@ public abstract class SharedActionsSystem : EntitySystem
|| !comp.Actions.Contains(actionId.Value));
if (!GameTiming.ApplyingState)
Log.Error($"Attempted to remove an action {ToPrettyString(actionId)} from an entity that it was never attached to: {ToPrettyString(performer)}");
Log.Error($"Attempted to remove an action {ToPrettyString(actionId)} from an entity that it was never attached to: {ToPrettyString(performer)}. Trace: {Environment.StackTrace}");
return;
}