Hi, there is a way to log an error on a `Try` with...
# arrow
m
Hi, there is a way to log an error on a
Try
without broken the chain ?
Copy code
methodA().flatMap { methodB(it) }.log { Log("Error $i") }.flatMap { methodC(it) }...