Skip to content

Commit

Permalink
tone down logging
Browse files Browse the repository at this point in the history
  • Loading branch information
psFried committed Oct 30, 2023
1 parent 0b85ff9 commit 4239e73
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/fetcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ impl Fetcher {
return Ok(body);
} else if s == reqwest::StatusCode::TOO_MANY_REQUESTS {
// We'll just loop around and try again
tracing::warn!("delaying in response to 429 status");
tracing::debug!("delaying in response to 429 status");
} else {
let body = resp.text().await;
return Err(anyhow::anyhow!("response error {s:?}, body: {body:?}"));
Expand Down
6 changes: 3 additions & 3 deletions src/pull.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,13 +127,13 @@ async fn run_sweep(
.context("ingesting replays")?;
tracing::debug!(%binding_key, num_replays = replays.len(), "finished processing replays");
} else {
tracing::info!("no replays found under group");
tracing::debug!("no replays found under group");
}
}
tracing::debug!("persisting state");
emitter.commit(&*state, false).await?;
}
tracing::info!("sweep complete, pending state update");
tracing::debug!("sweep complete, pending state update");
for binding_state in state.bindings.values_mut() {
binding_state.last_completed_sweep = binding_state.sweep_start.take();
}
Expand Down Expand Up @@ -176,7 +176,7 @@ fn should_ingest(

/// Does a depth-first search of the graph of groups. Does not use recursion
/// because async rust does not yet allow it
#[tracing::instrument(skip(fetcher))]
#[tracing::instrument(skip(fetcher), level = "debug")]
async fn next_replays(
state: &mut BindingState,
fetcher: &Fetcher,
Expand Down

0 comments on commit 4239e73

Please sign in to comment.