style(clippy)
Release Build / Rust project - latest (aarch64-unknown-linux-musl) (push) Waiting to run
Release Build / Rust project - latest (armv7-unknown-linux-musleabihf) (push) Waiting to run
Release Build / Rust project - latest (x86_64-unknown-linux-musl) (push) Waiting to run
Rust Build & Publish / build (push) Waiting to run
Pull Request / cargo test (push) Waiting to run
Pull Request / cargo fmt --all -- --check (push) Waiting to run
Pull Request / cargo clippy -- -D warnings (push) Waiting to run

This commit is contained in:
Matthew Esposito
2024-11-23 21:41:30 -05:00
parent 100a7b65a6
commit 7fe109df22
+3 -2
View File
@@ -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);
}
}