Remove old debug messages

This commit is contained in:
Thinkofname 2016-03-21 00:15:57 +00:00
parent 19b4238dca
commit 34e171ea39
1 changed files with 0 additions and 2 deletions

View File

@ -77,7 +77,6 @@ impl Profile {
.send());
if res.status != hyper::status::StatusCode::NoContent {
println!("Rerefeshing");
// Refresh needed
let res = try!(client.post(REFRESH_URL)
.body(&req)
@ -98,7 +97,6 @@ impl Profile {
access_token: ret.find("accessToken").and_then(|v| v.as_string()).unwrap().to_owned(),
});
}
println!("Reuse");
Ok(self)
}