Skip to content

Commit

Permalink
Fix stack traces
Browse files Browse the repository at this point in the history
  • Loading branch information
brikis98 committed Jun 11, 2019
1 parent f20889c commit 580fbed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion errors/multierror.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func NewMultiError(errs ...error) error {
return nil
}

return MultiError{Errors: nilsRemoved}
return WithStackTrace(MultiError{Errors: nilsRemoved})
}

func (errs MultiError) Error() string {
Expand Down

0 comments on commit 580fbed

Please sign in to comment.