BasePrinter is the default printer for common use. It uses fmt.Sprintf underneath.
| 11 | |
| 12 | // BasePrinter is the default printer for common use. It uses fmt.Sprintf underneath. |
| 13 | type BasePrinter struct{} |
| 14 | |
| 15 | // Sprintf formats according to a format specifier and returns the resulting string. |
| 16 | func (BasePrinter) Sprintf(msg string, val ...interface{}) string { |
nothing calls this directly
no outgoing calls
no test coverage detected