diff options
| -rw-r--r-- | reallog.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -32,7 +32,8 @@ func realPrintln(a ...any) { reallog.Println(a...) } if httpMode != nil { - fmt.Fprintln(httpMode, fmt.Sprint(a...)) + s := "sf:" + fmt.Sprint(a...) + fmt.Fprintln(httpMode, s) } } |
