diff --git a/leo/cli/commands/deploy.rs b/leo/cli/commands/deploy.rs index 19e82419c8..371e2289e9 100644 --- a/leo/cli/commands/deploy.rs +++ b/leo/cli/commands/deploy.rs @@ -45,7 +45,7 @@ impl Command for Deploy { let _ = std::panic::take_hook(); // Call the `node` command. - println!(); + tracing::info!(""); let command = SnarkVMDeploy::try_parse_from([ALEO_CLI_COMMAND]).map_err(CliError::failed_to_parse_aleo_node)?; let res = command.parse().map_err(CliError::failed_to_execute_aleo_node)?; diff --git a/leo/cli/commands/node.rs b/leo/cli/commands/node.rs index 6f026e8119..6aee1791d8 100644 --- a/leo/cli/commands/node.rs +++ b/leo/cli/commands/node.rs @@ -65,7 +65,7 @@ impl Command for Node { } // Call the `aleo node` command from the Aleo SDK. - println!(); + tracing::info!(""); let command = AleoNode::try_parse_from(&arguments).map_err(CliError::failed_to_parse_aleo_node)?; let res = command.parse().map_err(CliError::failed_to_execute_aleo_node)?; diff --git a/leo/cli/commands/run.rs b/leo/cli/commands/run.rs index 561b7ede84..f34c6b71cc 100644 --- a/leo/cli/commands/run.rs +++ b/leo/cli/commands/run.rs @@ -90,7 +90,7 @@ impl Command for Run { let _ = std::panic::take_hook(); // Call the `run` command. - println!(); + tracing::info!(""); let command = SnarkVMRun::try_parse_from(&arguments).map_err(CliError::failed_to_parse_run)?; let res = command.parse().map_err(CliError::failed_to_execute_run)?;