Hi, I noticed that if an error is thrown inside of a step, it will be logged with [https://github.com/sammarks/workflow/blob/fa904e257ce7d17674de17a8d4124a53731da3ac/src/workflow.ts#L92](https://github.com/sammarks/workflow/blob/fa904e257ce7d17674de17a8d4124a53731da3ac/src/workflow.ts#L92) [https://github.com/sammarks/workflow/blob/fa904e257ce7d17674de17a8d4124a53731da3ac/src/workflow.ts#L93](https://github.com/sammarks/workflow/blob/fa904e257ce7d17674de17a8d4124a53731da3ac/src/workflow.ts#L93) 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?
Hi, I noticed that if an error is thrown inside of a step, it will be logged with
workflow/src/workflow.ts
Line 92 in fa904e2
workflow/src/workflow.ts
Line 93 in fa904e2
how about changing this to
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?