Infof logs to the INFO log. Arguments are handled in the manner of fmt.Printf; a newline is appended if missing.
(format string, args ...interface{})
| 1164 | // Infof logs to the INFO log. |
| 1165 | // Arguments are handled in the manner of fmt.Printf; a newline is appended if missing. |
| 1166 | func Infof(format string, args ...interface{}) { |
| 1167 | logging.printf(infoLog, format, args...) |
| 1168 | } |
| 1169 | |
| 1170 | // Warning logs to the WARNING and INFO logs. |
| 1171 | // Arguments are handled in the manner of fmt.Print; a newline is appended if missing. |