Skip to content

Commit 0a64fd5

Browse files
fix dev errors with no stack trace
1 parent e984dbd commit 0a64fd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Helpers/BetterCoros.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ private static IEnumerator<float> Wrapper(IEnumerator<float> routine, Script scr
3636
catch (DeveloperFuckedUpException devErr)
3737
{
3838
onException?.Invoke(devErr);
39-
scr.Error(devErr.Message);
39+
scr.Error(devErr.Message + "\n" + devErr.StackTrace);
4040
yield break;
4141
}
4242
catch (Exception ex)

0 commit comments

Comments
 (0)