Warn logs the given entry at a warning level
(msg string)
| 118 | |
| 119 | // Warn logs the given entry at a warning level |
| 120 | func (e Entry) Warn(msg string) { |
| 121 | e.write(LevelWarn, msg) |
| 122 | } |
| 123 | |
| 124 | // Error logs the given entry at an error level |
| 125 | func (e Entry) Error(msg string) { |
no test coverage detected