remove debugging code

This commit is contained in:
Jeff Carr 2024-11-07 05:08:42 -06:00
parent 53adaabee0
commit 1bcdcfa2f4
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ func realPrintln(a ...any) {
reallog.Println(a...)
}
if httpMode != nil {
s := "sf:" + fmt.Sprint(a...)
s := fmt.Sprint(a...)
fmt.Fprintln(httpMode, s)
}
}