Errorf logs a message at level Error on the standard logger.
(format string, args ...interface{})
| 211 | |
| 212 | // Errorf logs a message at level Error on the standard logger. |
| 213 | func Errorf(format string, args ...interface{}) { |
| 214 | std.Errorf(format, args...) |
| 215 | } |
| 216 | |
| 217 | // Panicf logs a message at level Panic on the standard logger. |
| 218 | func Panicf(format string, args ...interface{}) { |