(mut self, level: LevelFilter)
| 79 | // NOTE: If we wanted to be less specific than we would need Ref to impl Copy |
| 80 | impl Ref<Logger> { |
| 81 | pub fn with_level(mut self, level: LevelFilter) -> Ref<Logger> { |
| 82 | self.level = level; |
| 83 | self |
| 84 | } |
| 85 | |
| 86 | /// Calling this will set the global logger to `self`. |
| 87 | /// |
no outgoing calls
no test coverage detected