Skip to content

Commit

Permalink
[Trivial] Do not log full auction (#2088)
Browse files Browse the repository at this point in the history
# Description
This log is creating issues with Kibana
([context](https://cowservices.slack.com/archives/C036PMLUPQF/p1701088972191479)).
Moreover it is redundant (printed once per driver) and the same
information can be recovered from the autopilot who also logs the
current auction.
  • Loading branch information
fleupold authored Dec 1, 2023
1 parent c598d2c commit 7d5397c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/driver/src/infra/observe/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ pub fn init(log: &str) {

/// Observe a received auction.
pub fn auction(auction: &Auction) {
tracing::debug!(?auction, "received auction");
tracing::debug!(id=?auction.id(), "received auction");
}

/// Observe that liquidity fetching is about to start.
Expand Down

0 comments on commit 7d5397c

Please sign in to comment.