Printf logs a message at level Info on the standard logger.
(format string, args ...interface{})
| 191 | |
| 192 | // Printf logs a message at level Info on the standard logger. |
| 193 | func Printf(format string, args ...interface{}) { |
| 194 | std.Printf(format, args...) |
| 195 | } |
| 196 | |
| 197 | // Infof logs a message at level Info on the standard logger. |
| 198 | func Infof(format string, args ...interface{}) { |