(...args: ReadonlyArray<any>)
| 399 | * @since 2.0.0 |
| 400 | */ |
| 401 | export const error = (...args: ReadonlyArray<any>): Effect.Effect<void> => |
| 402 | consoleWith((console) => |
| 403 | effect.sync(() => { |
| 404 | console.error(...args) |
| 405 | }) |
| 406 | ) |
| 407 | |
| 408 | /** |
| 409 | * Creates a scoped console group, optionally collapsed and labeled, and closes it automatically when the Effect scope is finalized. |
no test coverage detected