Handling Errors and Tracking Them in Effect TypeScript
Hi
Looking for a bit of help on how I should approach this code. I have an array of responses, of which there might be an error in there (I actually only need the first value out of the response, as I'm only requesting one instead of a batch). I want to both track the errors, and recover gracefully, how would I handle this? I have a feeling I need to use the
either type, alongside a tapError or partition. The consumer of this gen has a catchAll and is succeeding with a value that I can use on error. But I still want to track that error somewhere