Fprintf is like Sprintf but outputs the redactable string to the provided Writer.
(w io.Writer, format string, args ...interface{})
| 83 | // Fprintf is like Sprintf but outputs the redactable string to the |
| 84 | // provided Writer. |
| 85 | func Fprintf(w io.Writer, format string, args ...interface{}) (n int, err error) { |
| 86 | return rfmt.Fprintf(w, format, args...) |
| 87 | } |
searching dependent graphs…