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

@@ -40,7 +40,6 @@ impl NoodlemagazineProvider {
let old_items = match cache.get(&video_url) {
Some((time, items)) => {
if time.elapsed().unwrap_or_default().as_secs() < 60 * 5 {
println!("Cache hit for URL: {}", video_url);
return Ok(items.clone());
} else {
items.clone()