Update frontend

This commit is contained in:
Lou Knauer
2022-02-14 14:51:02 +01:00
parent 9682ddaab5
commit 5282b7dd8d
2 changed files with 2 additions and 2 deletions

View File

@@ -103,7 +103,7 @@ func Printf(format string, v ...interface{}) {
func Finfof(w io.Writer, format string, v ...interface{}) {
if w != io.Discard {
fmt.Fprintf(InfoWriter, InfoPrefix+" "+format+"\n", v...)
fmt.Fprintf(InfoWriter, InfoPrefix+format+"\n", v...)
}
}