Skip to content

Commit

Permalink
Remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
andreievg committed Feb 3, 2025
1 parent e6ceb35 commit 86be0d6
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions server/cli/src/graphql/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ impl Api {
pub async fn upload_file(&self, path: PathBuf) -> Result<UploadedFile, Error> {
let url = self.url.join("upload").unwrap();

println!("{}", url);
let auth_cooke_value = format!(r#"auth={{"token": "{}"}}"#, self.token);
let built_request = reqwest::Client::new()
.post(url.clone())
Expand Down Expand Up @@ -126,7 +125,6 @@ async fn _gql(
"variables": variables
});

println!("{}", url);
let mut client = reqwest::Client::new().post(url.clone());

if let Some(token) = token {
Expand Down

0 comments on commit 86be0d6

Please sign in to comment.