Remove prints

This commit is contained in:
bitfl0wer 2023-08-18 20:20:58 +02:00
parent 5f0a04c345
commit e1615a4cd3
1 changed files with 0 additions and 2 deletions

View File

@ -215,10 +215,8 @@ impl UpdateMessage<RoleObject> for GuildRoleUpdate {
}
fn update(&mut self, object_to_update: Arc<RwLock<RoleObject>>) {
println!("Processing Role Update. Name: {}", self.role.name);
let mut write = object_to_update.write().unwrap();
*write = self.role.clone();
println!("Updated role: Name: {}", write.name);
}
}