Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

Commit

Permalink
store: Silence extremely verbose tracing::debug
Browse files Browse the repository at this point in the history
This ends up recursing into the manifest/config objects
which is a wall of spam with `env RUST_LOG=debug`.  Just print
the merge commit to start here.
  • Loading branch information
cgwalters committed Oct 3, 2023
1 parent cc874c1 commit 5e0469d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/container/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1154,7 +1154,7 @@ pub fn query_image_commit(repo: &ostree::Repo, commit: &str) -> Result<Box<Layer
configuration,
cached_update,
});
tracing::debug!(state = ?state);
tracing::debug!("Wrote merge commit {}", state.merge_commit);
Ok(state)
}

Expand Down

0 comments on commit 5e0469d

Please sign in to comment.