src/client/http_client.rs: remove debug statement

This commit is contained in:
Dietmar Maurer 2019-03-06 06:45:51 +01:00
parent d49746481c
commit 21ea0158b4

View File

@ -89,8 +89,7 @@ fn load_ticket_info(server: &str, username: &str) -> Option<(String, String)> {
let token = match uinfo["token"].as_str() { let token = match uinfo["token"].as_str() {
Some(t) => t, Some(t) => t,
None => return None, None => return None,
}; println!("LOGIN OK"); };
return Some((ticket.to_owned(), token.to_owned())); return Some((ticket.to_owned(), token.to_owned()));
} }
} }