Effect.fn(function*() {...}) vs Effect.fnUntraced(function*() {...}) and Effect.fn("SpanName")(function*() {...})baz (fnUntraced) correctly shows logWarning, bar (just fn) kills the program, shows stacktrace on the parent span, but DOESNT EVEN LOG THE WARNING??foo (Effect.fn("SpanName")) works as expected.Effect.fn(function*() {}) to work just the same as fnUntraced, except with automatic tracing span, but this playground shows that Effect.fn actually swallows logs?