Logging Complex Nested Errors in Effect Typescript
Is this the best way to ensure to log an entire error that is complex and nested? Or does effect have a better "tool"?
yield* Effect.logError(
"AiPlanningError",
inspect(error, { depth: Infinity }),
);