diff --git a/main/src/check.rs b/main/src/check.rs index adc9933..631ab68 100644 --- a/main/src/check.rs +++ b/main/src/check.rs @@ -122,10 +122,6 @@ impl CheckConfig { || find_workspace_root().map_err(|e| eyre!("failed to find workspace root: {e}")), |s| Ok(PathBuf::from(s)), )?; - println!( - "Found workspace root in check: {}", - workspace_root.to_str().unwrap() - ); let toolchain_file_path = workspace_root.join(TOOLCHAIN_FILE_NAME); let toolchain_channel = extract_toolchain_channel(&toolchain_file_path)?; let rust_stable = !toolchain_channel.contains("nightly"); diff --git a/main/src/main.rs b/main/src/main.rs index 6cffead..1cbf8bc 100644 --- a/main/src/main.rs +++ b/main/src/main.rs @@ -606,7 +606,6 @@ async fn main_impl(args: Opts) -> Result<()> { .filter(|s| !s.is_empty()) .collect::>(); commands.extend(config_args); - println!("Running with commands: {:?}", &commands); run!( docker::run_reproducible( config.cargo_stylus_version,