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:
parent
bf553ba251
commit
75fcf3c456
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue