Skip to content
This repository was archived by the owner on Dec 13, 2020. It is now read-only.

Commit dd4ec2d

Browse files
don't print raw API response after updating book progress
1 parent 827ef02 commit dd4ec2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/api_client.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,8 @@ impl GoodreadsApiClient {
181181
);
182182

183183
match res {
184-
Ok(mut resp) => {
185-
println!("Updated: {}", resp.text().unwrap());
184+
Ok(mut _resp) => {
185+
// println!("Updated: {}", resp.text().unwrap());
186186
Ok(())
187187
}
188188
Err(err) => Err(format!("Request failed: {}", err)),

0 commit comments

Comments
 (0)