Capturing Effect Logs for Success/Failure Analysis in TypeScript
Hi,
I want to capture all logs that were produced by effect.
That's needed because I want to see all logs statements with successful/failed result of the effect execution result.
It's not convenient to see logs in AWS Cloud Watch every time effect get's failed to understand what was the reason of failed effect.
That's why I decided to go this way
That's how I capture logs:
I use
I want to capture all logs that were produced by effect.
That's needed because I want to see all logs statements with successful/failed result of the effect execution result.
It's not convenient to see logs in AWS Cloud Watch every time effect get's failed to understand what was the reason of failed effect.
That's why I decided to go this way
That's how I capture logs:
I use
Effect.logError in that supervised effect but I don't see the cause of error produced by Effect.logError(new Error("Some error"))