Debugf formats the message according to the format specifier and logs it at [DebugLevel].
(template string, args ...interface{})
| 195 | // Debugf formats the message according to the format specifier |
| 196 | // and logs it at [DebugLevel]. |
| 197 | func (s *SugaredLogger) Debugf(template string, args ...interface{}) { |
| 198 | s.log(DebugLevel, template, args, nil) |
| 199 | } |
| 200 | |
| 201 | // Infof formats the message according to the format specifier |
| 202 | // and logs it at [InfoLevel]. |