how to I log a stacktrace when the result of my `w...
# arrow
h
how to I log a stacktrace when the result of my
when
is a
Left
. Is something like this enough?
Copy code
is Either.Left -> {
                        logger.error("Error", testResult.a.message)
                        return systemError()
                    }