diff --git a/src/ephys_link/platforms/new_scale_manipulator.py b/src/ephys_link/platforms/new_scale_manipulator.py index 95bc5a7..01b3185 100644 --- a/src/ephys_link/platforms/new_scale_manipulator.py +++ b/src/ephys_link/platforms/new_scale_manipulator.py @@ -78,7 +78,7 @@ def get_pos(self) -> com.PositionalOutputData: self._z.CurPosition / MM_TO_UM, self._z.CurPosition / MM_TO_UM, ] - com.dprint(f"[SUCCESS]\t Got position of manipulator {self._id}\n") + # com.dprint(f"[SUCCESS]\t Got position of manipulator {self._id}\n") return com.PositionalOutputData(position, "") except Exception as e: print(f"[ERROR]\t\t Getting position of manipulator {self._id}") diff --git a/src/ephys_link/platforms/sensapex_manipulator.py b/src/ephys_link/platforms/sensapex_manipulator.py index 238d2a3..b6b86e2 100644 --- a/src/ephys_link/platforms/sensapex_manipulator.py +++ b/src/ephys_link/platforms/sensapex_manipulator.py @@ -47,7 +47,7 @@ def get_pos(self) -> com.PositionalOutputData: """ try: position = [axis / MM_TO_UM for axis in self._device.get_pos(1)] - com.dprint(f"[SUCCESS]\t Got position of manipulator {self._id}\n") + # com.dprint(f"[SUCCESS]\t Got position of manipulator {self._id}\n") return com.PositionalOutputData(position, "") except Exception as e: print(f"[ERROR]\t\t Getting position of manipulator {self._id}")