Log actor tags at debug level

This commit is contained in:
silverpill 2023-01-13 00:03:51 +00:00
parent cbc78f9532
commit 5c0672884a

View file

@ -63,7 +63,7 @@ fn parse_tags(actor: &Actor) -> () {
parse_property_value(tag_list_value).ok(); parse_property_value(tag_list_value).ok();
if let Some(tag_list) = maybe_tag_list { if let Some(tag_list) = maybe_tag_list {
for tag_value in tag_list { for tag_value in tag_list {
log::info!("found actor tag: {}", tag_value); log::debug!("found actor tag: {}", tag_value);
}; };
}; };
}; };