Skip to content

Commit

Permalink
debug: more info level debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
rswanson committed Oct 18, 2024
1 parent 6d4e380 commit 1a53658
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions crates/builder/src/tasks/submit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ impl SubmitTask {
"pinging quincey for signature"
);

tracing::debug!("fetching oauth token");
tracing::info!("fetching oauth token");

let token = self.fetch_oauth_token().await?;

tracing::info!("fetched oauth token");
tracing::debug!("quincey url: {}", self.config.quincey_url);
tracing::debug!("signing request: {:?}", sig_request);
tracing::info!("quincey url: {}", self.config.quincey_url);
tracing::info!("signing request: {:?}", sig_request);

let resp: reqwest::Response = self
.client
Expand All @@ -68,8 +68,8 @@ impl SubmitTask {

let body = resp.bytes().await?;

debug!(bytes = body.len(), "retrieved response body");
trace!(body = %String::from_utf8_lossy(&body), "response body");
tracing::info!(bytes = body.len(), "retrieved response body");
tracing::info!(body = %String::from_utf8_lossy(&body), "response body");

serde_json::from_slice(&body).map_err(Into::into)
}
Expand Down

0 comments on commit 1a53658

Please # to comment.