mirroring is weird

This commit is contained in:
Jeff Carr 2024-11-07 03:11:19 -06:00
parent 889ec714e1
commit 53adaabee0
1 changed files with 2 additions and 1 deletions

View File

@ -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)
}
}