Skip to content

Commit

Permalink
remove dbg
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKaul committed May 30, 2024
1 parent 395a4ff commit a51911a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions iceberg-rest-catalog/src/apis/catalog_api_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,6 @@ where

let status = resp.status();
let content = resp.text().await?;
dbg!(&content);

if !status.is_client_error() && !status.is_server_error() {
serde_json::from_str(&content).map_err(Error::from)
Expand Down Expand Up @@ -472,7 +471,6 @@ where

let status = resp.status();
let content = resp.text().await?;
dbg!(&content);

if !status.is_client_error() && !status.is_server_error() {
Ok(())
Expand Down

0 comments on commit a51911a

Please sign in to comment.