Skip to content

Commit

Permalink
Update collaborator.py
Browse files Browse the repository at this point in the history
Removing unnecessary logs

Signed-off-by: Parth Mandaliya <parthx.mandaliya@intel.com>
  • Loading branch information
ParthM-GitHub committed Sep 28, 2023
1 parent d1bd2ad commit 8a40e91
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions openfl/experimental/component/collaborator/collaborator.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,7 @@ def __set_attributes_to_clone(self, clone: Any) -> None:
"""
if len(self.__private_attrs) > 0:
for name, attr in self.__private_attrs.items():
self.logger.info(f'++++ {name} ++++'*20)
self.logger.info(f'id(attr): {id(attr)}')
setattr(clone, name, attr)
self.logger.info(f'id(clone.attr): {id(getattr(clone, name))}')
self.logger.info('---- '*20)


def __delete_agg_attrs_from_clone(self, clone: Any) -> None:
"""
Expand Down

0 comments on commit 8a40e91

Please sign in to comment.