clr-installer
clr-installer copied to clipboard
Add stack traces to all errors
Is your feature request related to a problem? Please describe.
There are existing functions that add stack trace support to errors, but many errors do not use them. The errors.Errorf
function can be used to create errors with stack traces and the errors.Wrap
function can be used to add a stack trace to an existing error.
Describe the solution you'd like When any error occurs, a stack trace will be provided.