(format string, args ...interface{})
| 169 | } |
| 170 | |
| 171 | func (logger *Logger) Printf(format string, args ...interface{}) { |
| 172 | entry := logger.newEntry() |
| 173 | entry.Printf(format, args...) |
| 174 | logger.releaseEntry(entry) |
| 175 | } |
| 176 | |
| 177 | func (logger *Logger) Warnf(format string, args ...interface{}) { |
| 178 | logger.Logf(WarnLevel, format, args...) |
nothing calls this directly
no test coverage detected