1
Fork 0

safe transmute: lowercase tracing levels

ref: https://github.com/rust-lang/rust/pull/92268#discussion_r927095154
This commit is contained in:
Jack Wrenn 2022-07-21 21:57:51 +00:00
parent 2268603046
commit aee5f31c68
3 changed files with 6 additions and 6 deletions

View file

@ -103,7 +103,7 @@ where
Self { transitions, start, accepting }
}
#[instrument(level = "DEBUG")]
#[instrument(level = "debug")]
#[cfg_attr(feature = "rustc", allow(rustc::potential_query_instability))]
pub(crate) fn from_nfa(nfa: Nfa<R>) -> Self {
let Nfa { transitions: nfa_transitions, start: nfa_start, accepting: nfa_accepting } = nfa;