Criticalf logs a formatted message at the "critical" level. The arguments are handled in the same manner as fmt.Printf.
(format string, v ...interface{})
| 109 | // Criticalf logs a formatted message at the "critical" level. The |
| 110 | // arguments are handled in the same manner as fmt.Printf. |
| 111 | func Criticalf(format string, v ...interface{}) { |
| 112 | outputf(LevelCritical, format, v) |
| 113 | } |
| 114 | |
| 115 | // Critical logs its arguments at the "critical" level. |
| 116 | func Critical(v ...interface{}) { |
searching dependent graphs…