Infof 使用格式化字符串输出信息级别的日志
(c context.Context, format string, args ...interface{})
| 428 | |
| 429 | // Infof 使用格式化字符串输出信息级别的日志 |
| 430 | func Infof(c context.Context, format string, args ...interface{}) { |
| 431 | addCaller(GetLogger(c), 2).Infof(format, args...) |
| 432 | } |
| 433 | |
| 434 | // Warn 输出警告级别的日志 |
| 435 | func Warn(c context.Context, args ...interface{}) { |
no test coverage detected