Skip to content

Commit

Permalink
Bug fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
lsk569937453 committed May 11, 2024
1 parent 077c04b commit 10a0f1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,7 @@ async fn main() {
// Set the subscriber as the default.
.init();
if let Err(e) = do_request(cli).await {
println!("{}", e);
error!("{}", e);
}
}
Expand Down Expand Up @@ -343,7 +344,6 @@ async fn do_request(cli: Cli) -> Result<(), anyhow::Error> {
println!("< {}: {}", key, value.to_str()?);
}
}
println!("handle response");
handle_response(cli.file_path_option, res).await?;
return Ok(());
}
Expand Down

0 comments on commit 10a0f1d

Please sign in to comment.