(...args: ReadonlyArray<any>)
| 496 | * @since 2.0.0 |
| 497 | */ |
| 498 | export const info = (...args: ReadonlyArray<any>): Effect.Effect<void> => |
| 499 | consoleWith((console) => |
| 500 | effect.sync(() => { |
| 501 | console.info(...args) |
| 502 | }) |
| 503 | ) |
| 504 | |
| 505 | /** |
| 506 | * Logs a general-purpose message to the console. |
nothing calls this directly
no test coverage detected