Effective Error Logging: Capturing Stack Traces Without Unwanted Recovery
is there a better to way log errors in a way that allows you to see the stack trace?
I had basically a
which was actually quite unhelpful because there were like 5 places it couldve come from
if I
and only when I
but now im recovering from defects I dont want to
I had basically a
catchAll(Console.error) which was just loging out which was actually quite unhelpful because there were like 5 places it couldve come from
if I
catchAll((e) => Console.error(e.toString())) then I get the tree formatted version of the errorand only when I
catchAllCause((e) => Console.error(e.toString()) I get the tracebut now im recovering from defects I dont want to
