(self: Micro<A, E, R>)
| 2904 | * @category error handling |
| 2905 | */ |
| 2906 | export const ignoreLogged = <A, E, R>(self: Micro<A, E, R>): Micro<void, never, R> => |
| 2907 | matchEffect(self, { |
| 2908 | // eslint-disable-next-line no-console |
| 2909 | onFailure: (error) => sync(() => console.error(error)), |
| 2910 | onSuccess: (_) => void_ |
| 2911 | }) |
| 2912 | |
| 2913 | /** |
| 2914 | * Replace the success value of the given `Micro` effect with an `Option`, |