Skip to content

Commit 4409cb2

Browse files
committed
Make portability log at debug level
1 parent 4e263fe commit 4409cb2

File tree

1 file changed

+2
-2
lines changed
  • src/librustdoc/html/render

1 file changed

+2
-2
lines changed

src/librustdoc/html/render/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2170,7 +2170,7 @@ fn stability_tags(item: &clean::Item, parent: &clean::Item) -> String {
21702170
(cfg, _) => cfg.as_deref().cloned(),
21712171
};
21722172

2173-
info!("Portability {:?} - {:?} = {:?}", item.attrs.cfg, parent.attrs.cfg, cfg);
2173+
debug!("Portability {:?} - {:?} = {:?}", item.attrs.cfg, parent.attrs.cfg, cfg);
21742174
if let Some(ref cfg) = cfg {
21752175
tags += &tag_html("portability", &cfg.render_long_plain(), &cfg.render_short_html());
21762176
}
@@ -2259,7 +2259,7 @@ fn short_stability(item: &clean::Item, cx: &Context, parent: Option<&clean::Item
22592259
(cfg, _) => cfg.as_deref().cloned(),
22602260
};
22612261

2262-
info!(
2262+
debug!(
22632263
"Portability {:?} - {:?} = {:?}",
22642264
item.attrs.cfg,
22652265
parent.and_then(|p| p.attrs.cfg.as_ref()),

0 commit comments

Comments
 (0)