v0.0.251 exerr.WithStackSkip
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 1m9s

This commit is contained in:
Mike Schwörer 2023-08-22 10:21:13 +02:00
parent a75b1291cb
commit b5ca475b3f
Signed by: Mikescher
GPG Key ID: D3C7172E0A70F8CF
3 changed files with 10 additions and 3 deletions

View File

@ -112,6 +112,13 @@ func (b *Builder) WithMessage(msg string) *Builder {
// ----------------------------------------------------------------------------
func (b *Builder) WithStackSkip(stacktraceskip int) *Builder {
b.errorData.Caller = callername(stacktraceskip)
return b
}
// ----------------------------------------------------------------------------
// Err changes the Severity to ERROR (default)
// The error will be:
//

View File

@ -207,7 +207,7 @@ func Error(e error) HTTPResponse {
func ErrWrap(e error, errorType exerr.ErrorType, msg string) HTTPResponse {
return &jsonAPIErrResponse{
err: exerr.FromError(exerr.Wrap(e, msg).WithType(errorType).Build()),
err: exerr.FromError(exerr.Wrap(e, msg).WithStackSkip(2).WithType(errorType).Build()),
}
}

View File

@ -1,5 +1,5 @@
package goext
const GoextVersion = "0.0.250"
const GoextVersion = "0.0.251"
const GoextVersionTimestamp = "2023-08-21T15:34:26+0200"
const GoextVersionTimestamp = "2023-08-22T10:21:13+0200"