Skip to content

Commit db267ae

Browse files
committed
cargo fmt
1 parent 693890e commit db267ae

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tracing-core/src/metadata.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,8 @@ impl FromStr for LevelFilter {
547547
s if s.eq_ignore_ascii_case("trace") => Some(LevelFilter::TRACE),
548548
s if s.eq_ignore_ascii_case("off") => Some(LevelFilter::OFF),
549549
_ => None,
550-
}).ok_or(ParseLevelFilterError(()))
550+
})
551+
.ok_or(ParseLevelFilterError(()))
551552
}
552553
}
553554

0 commit comments

Comments
 (0)