(&self, msg: &str)
| 662 | } |
| 663 | |
| 664 | pub fn warn(&self, msg: &str) { |
| 665 | self.inner.write(LogLevel::Warn, &Self::record(msg), &()) |
| 666 | } |
| 667 | |
| 668 | pub fn error(&self, msg: &str) { |
| 669 | self.inner.write(LogLevel::Error, &Self::record(msg), &()) |
no test coverage detected