summaryrefslogtreecommitdiff
path: root/reallog.go
diff options
context:
space:
mode:
Diffstat (limited to 'reallog.go')
-rw-r--r--reallog.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/reallog.go b/reallog.go
index 0f6bc33..9191fa8 100644
--- a/reallog.go
+++ b/reallog.go
@@ -36,6 +36,10 @@ func realPrintf(s string, a ...any) {
}
}
+func realSprint(a ...any) string {
+ return fmt.Sprint(a...)
+}
+
func realSprintf(s string, a ...any) string {
return fmt.Sprintf(s, a...)
}