Skip to content

Commit 68c6fe1

Browse files
committed
update logs
1 parent 3baa49d commit 68c6fe1

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

check_diff/src/lib.rs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -267,16 +267,16 @@ pub fn compile_rustfmt(
267267

268268
let feature_runner = build_rustfmt_from_src(dest.join("/feature_rustfmt"))?;
269269

270+
info!("RUSFMT_BIN {}", src_runner.get_binary_version()?);
270271
info!(
271-
"\nRuntime dependencies for rustfmt -- LD_LIBRARY_PATH: {}",
272-
&feature_runner.ld_library_path
272+
"Runtime dependencies for (src) rustfmt -- LD_LIBRARY_PATH: {}",
273+
src_runner.ld_library_path
274+
);
275+
info!("FEATURE_BIN {}", feature_runner.get_binary_version()?);
276+
info!(
277+
"Runtime dependencies for (feature) rustfmt -- LD_LIBRARY_PATH: {}",
278+
feature_runner.ld_library_path
273279
);
274-
275-
let rustfmt_version = src_runner.get_binary_version()?;
276-
info!("\nRUSFMT_BIN {}\n", rustfmt_version);
277-
278-
let feature_binary_version = feature_runner.get_binary_version()?;
279-
info!("FEATURE_BIN {}\n", feature_binary_version);
280280

281281
return Ok(CheckDiffRunners {
282282
src_runner,

0 commit comments

Comments
 (0)