Debugf method output debug level log.
(format string, v ...interface{})
| 393 | |
| 394 | // Debugf method output debug level log. |
| 395 | func Debugf(format string, v ...interface{}) { |
| 396 | std.zapLogger.Sugar().Debugf(format, v...) |
| 397 | } |
| 398 | |
| 399 | func (l *zapLogger) Debugf(format string, v ...interface{}) { |
| 400 | l.zapLogger.Sugar().Debugf(format, v...) |
no test coverage detected
searching dependent graphs…