removed unimportant prints

This commit is contained in:
Simon
2025-12-04 13:51:34 +00:00
parent 80d874a004
commit 9739560c03
22 changed files with 0 additions and 22 deletions

View File

@@ -161,7 +161,6 @@ impl Requester {
return Ok(response.text().await?);
}
if response.status().as_u16() == 429 {
println!("Received 429 Too Many Requests, retrying after delay...");
tokio::time::sleep(std::time::Duration::from_secs(1)).await;
continue;
} else {