Every line of 'golang printf' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Go code is secure.
367 func vprintf(format string, attrs ...interface{}) { 368 if *verbose { 369 fmt.Printf(format, attrs...) 370 } 371 }
57 func (l Logger) printf(writer io.Writer, format string, v ...interface{}) { 58 if !strings.HasSuffix(format, "\n") { 59 format = format + "\n" 60 } 61 fmt.Fprintf(writer, format, v...) 62 }
30 func (l *MockLogger) Printf(format string, v ...interface{}) { 31 if l.PrintfFunc != nil { 32 l.PrintfFunc(format, v...) 33 } 34 PrintfFuncDefault(format, v...) 35 }
111 func Printf(format string, a ...interface{}) (int, error) { 112 format = compile(format) 113 compileValues(&a) 114 return fmt.Printf(format, a...) 115 }
37 func (p writerPrinter) Printf(format string, v ...interface{}) { 38 if len(format) == 0 || format[len(format)-1] != '\n' { 39 format = format + "\n" 40 } 41 fmt.Fprintf(p.w, format, v...) 42 }
52 func (sp *StdPrinter) Printf(format string, a ...interface{}) { 53 if sp.Out != nil { 54 fmt.Fprintf(sp.Out, format+"\n", a...) 55 } 56 }
672 func (r Silent) Printf(format string, args ...interface{}) { 673 if r { 674 return 675 } 676 fmt.Printf(format, args...) 677 }
280 func (x *expandState) Printf(format string, a ...interface{}) (n int, err error) { 281 if x.indentLevel > 0 { 282 fmt.Printf("%[1]*s", x.indentLevel, "") 283 } 284 return fmt.Printf(format, a...) 285 }
57 func Printf(c ANSICode, format string, a ...interface{}) (n int, err error) { 58 return fmt.Printf("\x1B[%sm%s\x1B[0m", c, fmt.Sprintf(format, a...)) 59 }
310 func (el *eventLog) Printf(format string, a ...interface{}) { 311 el.printf(false, format, a...) 312 }