Debug logs a debug message without additional fields
(msg string)
| 173 | |
| 174 | // Debug logs a debug message without additional fields |
| 175 | func Debug(msg string) { |
| 176 | newEntry(Fields{}).Debug(msg) |
| 177 | } |
| 178 | |
| 179 | // Info logs an info message without additional fields |
| 180 | func Info(msg string) { |
no test coverage detected