Understanding Error Attribution in Stack Traces
I think I'm missing something fundamental. How do I get attribution on where in my code caused an error in a stack trace? For example, I have an error and the entire stacktrace is
I know where in the code it at from intuition, a client is failing with a
Though none of that is in the error. How do I connect these pieces?
This feels similar to the issue that happens sometimes with unhandled promise rejections, where the error is trapped in the promise runtime and doesn't have outer context on where it happened.
I know where in the code it at from intuition, a client is failing with a
filterStatusOk in a yield* pipeline likeThough none of that is in the error. How do I connect these pieces?
This feels similar to the issue that happens sometimes with unhandled promise rejections, where the error is trapped in the promise runtime and doesn't have outer context on where it happened.
