(level: tracing::Level)
| 265 | } |
| 266 | |
| 267 | fn level_rank(level: tracing::Level) -> u8 { |
| 268 | match level { |
| 269 | tracing::Level::ERROR => 1, |
| 270 | tracing::Level::WARN => 2, |
| 271 | tracing::Level::INFO => 3, |
| 272 | tracing::Level::DEBUG => 4, |
| 273 | tracing::Level::TRACE => 5, |
| 274 | } |
| 275 | } |
| 276 | |
| 277 | fn target_override_rank(target: &str) -> Option<u8> { |
| 278 | if matches_target_rule(target, "ignore") |
no outgoing calls
no test coverage detected