Error logs a message using ERROR as log level.
(args ...interface{})
| 206 | |
| 207 | // Error logs a message using ERROR as log level. |
| 208 | func (l *Logger) Error(args ...interface{}) { |
| 209 | l.log(ERROR, nil, args...) |
| 210 | } |
| 211 | |
| 212 | // Errorf logs a message using ERROR as log level. |
| 213 | func (l *Logger) Errorf(format string, args ...interface{}) { |