From 5b0b6513a98790924ad8d0b21f7b1dd26b55b15b Mon Sep 17 00:00:00 2001 From: Junko Date: Sun, 28 Jan 2024 14:27:18 +0100 Subject: [PATCH] blacklist stdout --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index 6eea9f8..3b48c93 100644 --- a/src/main.rs +++ b/src/main.rs @@ -463,6 +463,7 @@ fn avatar_module(config: &Config, names: &Vec) -> Result<(), &'static st if blacklist.contains(&name.to_lowercase()) { let index = whitelisted_names.iter().position(|x| *x == name.to_lowercase()).unwrap(); whitelisted_names.remove(index); + println!("{} blacklisted from avatar module", name); } }