Warningf logs a formatted message at the "warning" level. The arguments are handled in the same manner as fmt.Printf.
(format string, v ...interface{})
| 131 | // Warningf logs a formatted message at the "warning" level. The |
| 132 | // arguments are handled in the same manner as fmt.Printf. |
| 133 | func Warningf(format string, v ...interface{}) { |
| 134 | outputf(LevelWarning, format, v) |
| 135 | } |
| 136 | |
| 137 | // Warning logs its arguments at the "warning" level. |
| 138 | func Warning(v ...interface{}) { |
searching dependent graphs…