Remove debug print to stdout in trade sub command (#191)

Every time when the `trade` sub command is executed, the webpage gets
printed to stdout which is a bit irritating and unnecessary.

This PR fixes this, in that it changes the `println!` macro to a
`trace!` macro.
This commit is contained in:
Jonas Süskind 2023-04-20 00:07:10 +02:00 committed by GitHub
parent bf553ba251
commit 75fcf3c456
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -163,7 +163,7 @@ impl SteamGuardAccount {
trace!("{:?}", resp); trace!("{:?}", resp);
let text = resp.text().unwrap(); let text = resp.text().unwrap();
trace!("text: {:?}", text); trace!("text: {:?}", text);
println!("{}", text); trace!("{}", text);
return parse_confirmations(text); return parse_confirmations(text);
} }