(format string, val ...interface{})
| 63 | } |
| 64 | |
| 65 | func (l *Logger) Debugf(format string, val ...interface{}) { |
| 66 | if !l.IsDebug() { |
| 67 | return |
| 68 | } |
| 69 | l.log(true, l.formatMsg(fmt.Sprintf(format, val...), nil)) |
| 70 | } |
| 71 | |
| 72 | func (l *Logger) Debugln(val ...interface{}) { |
| 73 | if !l.IsDebug() { |
no test coverage detected