Debug logs a message using DEBUG as log level.
(args ...interface{})
| 246 | |
| 247 | // Debug logs a message using DEBUG as log level. |
| 248 | func (l *Logger) Debug(args ...interface{}) { |
| 249 | l.log(DEBUG, nil, args...) |
| 250 | } |
| 251 | |
| 252 | // Debugf logs a message using DEBUG as log level. |
| 253 | func (l *Logger) Debugf(format string, args ...interface{}) { |