Critical logs its arguments at the "critical" level.
(v ...interface{})
| 114 | |
| 115 | // Critical logs its arguments at the "critical" level. |
| 116 | func Critical(v ...interface{}) { |
| 117 | output(LevelCritical, v) |
| 118 | } |
| 119 | |
| 120 | // Errorf logs a formatted message at the "error" level. The arguments |
| 121 | // are handled in the same manner as fmt.Printf. |
searching dependent graphs…