Debugf logs a message using DEBUG as log level.
(format string, args ...interface{})
| 251 | |
| 252 | // Debugf logs a message using DEBUG as log level. |
| 253 | func (l *Logger) Debugf(format string, args ...interface{}) { |
| 254 | l.log(DEBUG, &format, args...) |
| 255 | } |
| 256 | |
| 257 | func init() { |
| 258 | Reset() |