added debug logging to hierarchical attrs event

This commit is contained in:
iLLiCiTiT 2019-10-17 16:45:49 +02:00
parent aea0eefab0
commit 642020ae12

View file

@ -103,6 +103,12 @@ class SyncHierarchicalAttrs(BaseEvent):
for key, attr_value in processed_keys.items():
self.update_hierarchical_attribute(entity, key, attr_value)
self.log.debug(
"Updated hierarchical attributes for entity \"{}\": {}".format(
ent_path, str(processed_keys.keys())
)
)
self.db_con.uninstall()
return True