From 34e171ea39d4e07af3902ba8638ce7d1a0e3a167 Mon Sep 17 00:00:00 2001 From: Thinkofname Date: Mon, 21 Mar 2016 00:15:57 +0000 Subject: [PATCH] Remove old debug messages --- src/protocol/mojang.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/protocol/mojang.rs b/src/protocol/mojang.rs index d3aeded..c416787 100644 --- a/src/protocol/mojang.rs +++ b/src/protocol/mojang.rs @@ -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) }