You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that when showFriendlyErrorStack=true is set, the Error stack is always serialized, even when it's not needed. By just grabbing the reference to the error, and only doing .stack when the stack is actually needed, we save a lot of CPU cycles so that it might even be worth to have friendly stack traces enabled for production.
I noticed that when
showFriendlyErrorStack=true
is set, the Error stack is always serialized, even when it's not needed. By just grabbing the reference to the error, and only doing.stack
when the stack is actually needed, we save a lot of CPU cycles so that it might even be worth to have friendly stack traces enabled for production.The related PR: #1359
The text was updated successfully, but these errors were encountered: