Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions compiler/rustc_hir/src/attrs/diagnostic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pub use rustc_ast::attr::data_structures::*;
use rustc_macros::{Decodable, Encodable, HashStable_Generic, PrintAttribute};
use rustc_span::{DesugaringKind, Span, Symbol, kw};
use thin_vec::ThinVec;
use tracing::{debug, info};
use tracing::debug;

use crate::attrs::PrintAttribute;

Expand Down Expand Up @@ -58,7 +58,9 @@ impl Directive {
args: &FormatArgs,
) -> CustomDiagnostic {
let this = &args.this;
info!("eval({self:?}, this={this}, options={condition_options:?}, args ={args:?})");
debug!(
"Directive::eval({self:?}, this={this}, options={condition_options:?}, args ={args:?})"
);

let Some(condition_options) = condition_options else {
debug_assert!(
Expand Down
Loading