v0.0.532
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 2m53s

This commit is contained in:
Mike Schwörer 2024-10-13 16:33:39 +02:00
parent 1a8e31e5ef
commit e884ba6b89
Signed by: Mikescher
GPG Key ID: D3C7172E0A70F8CF
2 changed files with 4 additions and 4 deletions

View File

@ -34,8 +34,8 @@ func FromError(err error) *ExErr {
Caller: "", Caller: "",
OriginalError: nil, OriginalError: nil,
Meta: MetaMap{ Meta: MetaMap{
"panic_object": {DataType: MDTString, Value: fmt.Sprintf("%+v", verr)}, "panic_object": {DataType: MDTString, Value: fmt.Sprintf("%+v", verr.RecoveredObj())},
"panic_type": {DataType: MDTString, Value: fmt.Sprintf("%T", verr)}, "panic_type": {DataType: MDTString, Value: fmt.Sprintf("%T", verr.RecoveredObj())},
"stack": {DataType: MDTString, Value: verr.Stack}, "stack": {DataType: MDTString, Value: verr.Stack},
}, },
Extra: make(map[string]any), Extra: make(map[string]any),

View File

@ -1,5 +1,5 @@
package goext package goext
const GoextVersion = "0.0.531" const GoextVersion = "0.0.532"
const GoextVersionTimestamp = "2024-10-13T16:10:55+0200" const GoextVersionTimestamp = "2024-10-13T16:33:39+0200"