Skip to content

Commit

Permalink
Move some of the noisier traces back to log-level 'trace' (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
TAGraves authored Dec 13, 2024
1 parent cbc0a9e commit a067939
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/abq_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "abq"
version = "1.9.1"
version = "1.9.2"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/abq_queue/src/persistence/results.rs
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ pub struct PersistencePlan<'a> {
}

impl<'a> PersistencePlan<'a> {
#[tracing::instrument(level = "info", skip_all, fields(run_id = %self.cell.run_id, eligible_for_remote_dump = %self.eligible_for_remote_dump.bool()))]
#[tracing::instrument(level = "trace", skip_all, fields(run_id = %self.cell.run_id, eligible_for_remote_dump = %self.eligible_for_remote_dump.bool()))]
pub async fn execute(self) -> Result<()> {
let result = self
.persist_results
Expand Down
2 changes: 1 addition & 1 deletion crates/abq_queue/src/queue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2260,7 +2260,7 @@ impl QueueServer {
Ok(())
}

#[instrument(level = "info", skip_all, fields(run_id=%run_id, entity=?entity, results_message_size=%results_message_size))]
#[instrument(level = "trace", skip_all, fields(run_id=%run_id, entity=?entity, results_message_size=%results_message_size))]
async fn handle_worker_results(
queues: SharedRuns,
persist_results: SharedPersistResults,
Expand Down

0 comments on commit a067939

Please sign in to comment.