Skip to content

Commit

Permalink
chore: remove leftover debug print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
1zun4 committed Oct 18, 2024
1 parent 55cbdb1 commit 87d7a83
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ impl ZteClient {
// {"wa_inner_version":"BD_VDFDEMF289FV1.0.0B08 [Jun 18 2022 05:39:38]"}
pub async fn get_version(&self) -> Result<(String, String)> {
let response = self.get_command("cr_version,wa_inner_version").await?;
info!("Response: {}", response);

// cr_version, wa_inner_version
let cr_version = response.get("cr_version")
Expand Down Expand Up @@ -173,10 +172,7 @@ impl ZteClient {

match self.send_command(command).await?.as_str() {
"success" => Ok(()),
v => {
println!("Response: {}", v);
bail!("Failed to select LTE band")
},
_ => bail!("Failed to select LTE band"),
}
}

Expand Down

0 comments on commit 87d7a83

Please sign in to comment.