Skip to content

Commit

Permalink
Random change
Browse files Browse the repository at this point in the history
  • Loading branch information
squadgazzz committed Dec 27, 2024
1 parent d28f4dc commit 8ef283f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/alerter/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ impl ZeroExApi {
.json()
.await?;

tracing::debug!(url = url.as_str(), ?response, "0x");
tracing::info!(url = url.as_str(), ?response, "0x");

let can_settle =
response.sell_amount <= order.sell_amount && response.buy_amount >= order.buy_amount;
Expand Down
2 changes: 1 addition & 1 deletion crates/rate-limit/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ impl RateLimiter {
} else {
self.strategy().response_ok(&self.name);
if times_rate_limited > 0 {
tracing::debug!(?self.name, "reset rate limit");
tracing::info!(?self.name, "reset rate limit");
}
}

Expand Down

0 comments on commit 8ef283f

Please sign in to comment.