Errorf is like Debugf, but at Error level.
(ctx context.Context, format string, args ...interface{})
| 31 | |
| 32 | // Errorf is like Debugf, but at Error level. |
| 33 | func Errorf(ctx context.Context, format string, args ...interface{}) { |
| 34 | internal.Logf(ctx, 3, format, args...) |
| 35 | } |
| 36 | |
| 37 | // Criticalf is like Debugf, but at Critical level. |
| 38 | func Criticalf(ctx context.Context, format string, args ...interface{}) { |
no test coverage detected
searching dependent graphs…