(v ...interface{})
| 257 | } |
| 258 | |
| 259 | func (l *Logger) Warn(v ...interface{}) { |
| 260 | t := TYPE_WARN |
| 261 | if l.isDisabled(t) { |
| 262 | return |
| 263 | } |
| 264 | s := fmt.Sprint(v...) |
| 265 | l.output(1, nil, t, s) |
| 266 | } |
| 267 | |
| 268 | func (l *Logger) Warnf(format string, v ...interface{}) { |
| 269 | t := TYPE_WARN |
nothing calls this directly
no test coverage detected