Log actor tags at debug level
This commit is contained in:
parent
cbc78f9532
commit
5c0672884a
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue