Skip to content

Commit

Permalink
update logs
Browse files Browse the repository at this point in the history
  • Loading branch information
benluiwj committed Sep 29, 2024
1 parent 3baa49d commit 68c6fe1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions check_diff/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -267,16 +267,16 @@ pub fn compile_rustfmt(

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

info!("RUSFMT_BIN {}", src_runner.get_binary_version()?);
info!(
"\nRuntime dependencies for rustfmt -- LD_LIBRARY_PATH: {}",
&feature_runner.ld_library_path
"Runtime dependencies for (src) rustfmt -- LD_LIBRARY_PATH: {}",
src_runner.ld_library_path
);
info!("FEATURE_BIN {}", feature_runner.get_binary_version()?);
info!(
"Runtime dependencies for (feature) rustfmt -- LD_LIBRARY_PATH: {}",
feature_runner.ld_library_path
);

let rustfmt_version = src_runner.get_binary_version()?;
info!("\nRUSFMT_BIN {}\n", rustfmt_version);

let feature_binary_version = feature_runner.get_binary_version()?;
info!("FEATURE_BIN {}\n", feature_binary_version);

return Ok(CheckDiffRunners {
src_runner,
Expand Down

0 comments on commit 68c6fe1

Please sign in to comment.