aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--internal/log.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/log.go b/internal/log.go
index 0f374bd4..d2b233c5 100644
--- a/internal/log.go
+++ b/internal/log.go
@@ -73,9 +73,9 @@ func callerPrettyfier(f *runtime.Frame) (string, string) {
// Append a newline + tab to it to move the actual log content to its own line
funcname += "\n\t"
- // Surround the filepath in brackets and append line number so IDEs can quickly
- // navigate
- filename := fmt.Sprintf(" [%s:%d]", f.File, f.Line)
+ // Use a shortened file path which just has the filename to avoid having lots of redundant
+ // directories which contribute significantly to overall log sizes!
+ filename := fmt.Sprintf(" [%s:%d]", path.Base(f.File), f.Line)
return funcname, filename
}