Skip to content

Commit

Permalink
chore: minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lklimek committed Sep 8, 2023
1 parent 7b71e49 commit 0ee91ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion abci/src/application.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ impl<A: Application> RequestDispatcher for A {
.unwrap_or_else(|e| e.into());

if let response::Value::Exception(_) = response {
tracing::error!(response=?response, "sending ABCI exception");
tracing::error!(?response, "sending ABCI exception");
} else {
tracing::trace!(?response, "sending ABCI response");
};
Expand Down

0 comments on commit 0ee91ef

Please sign in to comment.