From 2591b6a4f21dc5f44eedcc19ea88cdce3b9c356c Mon Sep 17 00:00:00 2001 From: Amy Y Date: Tue, 21 Jun 2022 23:54:41 +1000 Subject: [PATCH] fixed issue --- exalta_core/src/auth/steamworks.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/exalta_core/src/auth/steamworks.rs b/exalta_core/src/auth/steamworks.rs index 000fe08..51c8cff 100644 --- a/exalta_core/src/auth/steamworks.rs +++ b/exalta_core/src/auth/steamworks.rs @@ -27,7 +27,6 @@ pub async fn request_credentials( .send() .await?; let resp_text = steam_creds_resp.text().await?; - println!("{}", resp_text); Ok(quick_xml::de::from_str::(&resp_text).map_err(|e| AuthError(e.to_string()))?) }