v0.0.466 exerr.Wrap now inherits the Severity of the wrapped error
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 1m24s
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 1m24s
This commit is contained in:
parent
d2bb362135
commit
12fa53d848
@ -493,11 +493,12 @@ func (b *Builder) Format(level LogPrintLevel) string {
|
|||||||
// If the error is SevErr we also send it to the error-service
|
// If the error is SevErr we also send it to the error-service
|
||||||
func (b *Builder) Fatal(ctxs ...context.Context) {
|
func (b *Builder) Fatal(ctxs ...context.Context) {
|
||||||
|
|
||||||
|
b.errorData.Severity = SevFatal
|
||||||
|
|
||||||
for _, dctx := range ctxs {
|
for _, dctx := range ctxs {
|
||||||
b.CtxData(MethodFatal, dctx)
|
b.CtxData(MethodFatal, dctx)
|
||||||
}
|
}
|
||||||
|
|
||||||
b.errorData.Severity = SevFatal
|
|
||||||
b.errorData.Log(stackSkipLogger.WithLevel(zerolog.FatalLevel))
|
b.errorData.Log(stackSkipLogger.WithLevel(zerolog.FatalLevel))
|
||||||
|
|
||||||
b.errorData.CallListener(MethodFatal)
|
b.errorData.CallListener(MethodFatal)
|
||||||
|
@ -56,7 +56,7 @@ func wrapExErr(e *ExErr, msg string, cat ErrorCategory, stacktraceskip int) *ExE
|
|||||||
UniqueID: newID(),
|
UniqueID: newID(),
|
||||||
Category: cat,
|
Category: cat,
|
||||||
Type: TypeWrap,
|
Type: TypeWrap,
|
||||||
Severity: SevErr,
|
Severity: e.Severity,
|
||||||
Timestamp: time.Now(),
|
Timestamp: time.Now(),
|
||||||
StatusCode: e.StatusCode,
|
StatusCode: e.StatusCode,
|
||||||
Message: msg,
|
Message: msg,
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
package goext
|
package goext
|
||||||
|
|
||||||
const GoextVersion = "0.0.465"
|
const GoextVersion = "0.0.466"
|
||||||
|
|
||||||
const GoextVersionTimestamp = "2024-06-03T09:39:57+0200"
|
const GoextVersionTimestamp = "2024-06-03T13:48:30+0200"
|
||||||
|
Loading…
Reference in New Issue
Block a user