Skip to content

Commit

Permalink
rm print
Browse files Browse the repository at this point in the history
  • Loading branch information
rauljordan committed Dec 20, 2024
1 parent 8ad421d commit 0c37ef8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
4 changes: 0 additions & 4 deletions main/src/check.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down
1 change: 0 additions & 1 deletion main/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,6 @@ async fn main_impl(args: Opts) -> Result<()> {
.filter(|s| !s.is_empty())
.collect::<Vec<String>>();
commands.extend(config_args);
println!("Running with commands: {:?}", &commands);
run!(
docker::run_reproducible(
config.cargo_stylus_version,
Expand Down

0 comments on commit 0c37ef8

Please sign in to comment.