Hi, I noticed that if an error is thrown inside of a step, it will be logged with
|
console.error(` Failed.`) |
how about changing this to
debug(` Failed.`)
debug(e)
in my case, I want to avoid printing the error line and print human readable log.
Any reason why it's being printed like that instead?