Skip to content

Commit

Permalink
feat: logging
Browse files Browse the repository at this point in the history
  • Loading branch information
joske committed Jun 14, 2023
1 parent d83c4be commit 026524d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion leo/cli/commands/deploy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ impl Command for Deploy {
let _ = std::panic::take_hook();

// Call the `aleo node` command from the Aleo SDK.
println!();
tracing::info!("");
let command = AleoDeploy::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)?;

Expand Down
2 changes: 1 addition & 1 deletion leo/cli/commands/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)?;

Expand Down
2 changes: 1 addition & 1 deletion leo/cli/commands/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ impl Command for Run {
// Unset the Leo panic hook
let _ = std::panic::take_hook();

println!();
tracing::info!("");
let command = AleoRun::try_parse_from(&arguments).map_err(CliError::failed_to_parse_aleo_run)?;
let res = command.parse().map_err(CliError::failed_to_execute_aleo_run)?;

Expand Down

0 comments on commit 026524d

Please sign in to comment.