Infof is like Debugf, but at Info level.
(ctx context.Context, format string, args ...interface{})
| 21 | |
| 22 | // Infof is like Debugf, but at Info level. |
| 23 | func Infof(ctx context.Context, format string, args ...interface{}) { |
| 24 | internal.Logf(ctx, 1, format, args...) |
| 25 | } |
| 26 | |
| 27 | // Warningf is like Debugf, but at Warning level. |
| 28 | func Warningf(ctx context.Context, format string, args ...interface{}) { |
no test coverage detected
searching dependent graphs…