Handling Expected Errors in Effect Streams to Prevent Log Messages

I've read a few threads around "Fiber terminated with an unhandled error" logs, but I'm trying to get a better handle on how to silence them surgically within a stream (because in specific cases they are expected, but in other cases they might not be). Playground link: https://effect.website/play#164cb40e4560

Basically, I'm explicitly failing/restarting my stream using a custom Data.TaggedError. This of course does terminate the fiber, but it's expected. How can I "handle" this error to prevent this specific log from appearing?
Was this page helpful?