Skip to content

Commit

Permalink
app: less noisy tracing
Browse files Browse the repository at this point in the history
  • Loading branch information
hdevalence committed May 5, 2024
1 parent a0b85c6 commit 3b6d15e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/core/app/src/app/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ impl App {
.expect("must be able to read app params");
match change.apply_changes(old_params) {
Ok(new_params) => {
tracing::info!(?change, ?new_params, "applied app parameter change");
tracing::info!(?change, "applied app parameter change");
state_tx.put_app_params(new_params);
}
Err(e) => {
Expand Down

0 comments on commit 3b6d15e

Please sign in to comment.