Skip to content

Commit 265b04d

Browse files
committed
Change the log level of the message reporting the selected Polonius algorithm to debug.
1 parent 1404c00 commit 265b04d

File tree

1 file changed

+1
-1
lines changed
  • src/librustc_mir/borrow_check/nll

1 file changed

+1
-1
lines changed

src/librustc_mir/borrow_check/nll/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ pub(in borrow_check) fn compute_regions<'cx, 'gcx, 'tcx>(
161161
let algorithm = env::var("POLONIUS_ALGORITHM")
162162
.unwrap_or(String::from("DatafrogOpt"));
163163
let algorithm = Algorithm::from_str(&algorithm).unwrap();
164-
info!("Using Polonius algorithm: {:?}", algorithm);
164+
debug!("compute_regions: using polonius algorithm {:?}", algorithm);
165165
Some(Rc::new(Output::compute(
166166
&all_facts,
167167
algorithm,

0 commit comments

Comments
 (0)