updated dependencies and go #1

Manually merged
Mikescher merged 4 commits from feature/upgrade-go into master 2026-04-26 14:31:58 +02:00
Showing only changes of commit d30e778bd4 - Show all commits
+5 -4
View File
@@ -2,12 +2,13 @@ package exerr
import (
"fmt"
"git.blackforestbytes.com/BlackForestBytes/goext/langext"
"github.com/rs/xid"
"github.com/rs/zerolog"
"reflect"
"strings"
"time"
"git.blackforestbytes.com/BlackForestBytes/goext/langext"
"github.com/rs/xid"
"github.com/rs/zerolog"
)
type ExErr struct {
@@ -136,7 +137,7 @@ func (ee *ExErr) FormatLog(lvl LogPrintLevel) string {
for curr := ee; curr != nil; curr = curr.OriginalError {
indent.WriteString(" ")
str.WriteString(indent).String()
str.WriteString(indent.String())
str.WriteString("-> ")
strmsg := strings.Trim(curr.Message, " \r\n\t")
if lbidx := strings.Index(curr.Message, "\n"); lbidx >= 0 {