Reduce log level used by tracing instrumentation from info to debug
This commit is contained in:
parent
9a9477fada
commit
59457ab86e
7 changed files with 7 additions and 7 deletions
|
@ -18,7 +18,7 @@ impl<'a, 'tcx> PatCtxt<'a, 'tcx> {
|
|||
/// Converts an evaluated constant to a pattern (if possible).
|
||||
/// This means aggregate values (like structs and enums) are converted
|
||||
/// to a pattern that matches the value (as if you'd compared via structural equality).
|
||||
#[instrument(skip(self))]
|
||||
#[instrument(level = "debug", skip(self))]
|
||||
pub(super) fn const_to_pat(
|
||||
&self,
|
||||
cv: &'tcx ty::Const<'tcx>,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue