Debug logs the provided arguments at [DebugLevel]. Spaces are added between arguments when neither is a string.
(args ...interface{})
| 146 | // Debug logs the provided arguments at [DebugLevel]. |
| 147 | // Spaces are added between arguments when neither is a string. |
| 148 | func (s *SugaredLogger) Debug(args ...interface{}) { |
| 149 | s.log(DebugLevel, "", args, nil) |
| 150 | } |
| 151 | |
| 152 | // Info logs the provided arguments at [InfoLevel]. |
| 153 | // Spaces are added between arguments when neither is a string. |