next #44

Merged
sneak merged 79 commits from next into main 2026-03-15 18:49:20 +01:00
Showing only changes of commit 1d37dd9748 - Show all commits

View File

@@ -4,6 +4,7 @@ import (
"fmt"
"io"
"os"
"path/filepath"
"runtime"
"sync"
@@ -207,7 +208,7 @@ func DebugReal(arg string, cs int) {
if !ok {
return
}
tag := fmt.Sprintf("%s:%d: ", callerFile, callerLine)
tag := fmt.Sprintf("%s:%d: ", filepath.Base(callerFile), callerLine)
log.Debug(tag + arg)
}