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()))?) }