diff --git a/abci/src/application.rs b/abci/src/application.rs index 8fbc2fc..914373d 100644 --- a/abci/src/application.rs +++ b/abci/src/application.rs @@ -180,7 +180,7 @@ impl 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"); };