Skip to content

Commit

Permalink
style(clippy)
Browse files Browse the repository at this point in the history
  • Loading branch information
sigaloid committed Nov 24, 2024
1 parent 100a7b6 commit 7fe109d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,10 @@ async fn main() {
match rate_limit_check().await {
Ok(()) => {
info!("[✅] Rate limit check passed");
},
}
Err(e) => {
log::error!("[❌] Rate limit check failed: {}", e);
log::error!(" Rate limit check failed: {}", e);
println!("[❌] Rate limit check failed: {}", e);
std::process::exit(1);
}
}
Expand Down

0 comments on commit 7fe109d

Please sign in to comment.