Skip to content

Commit

Permalink
Remove trace log
Browse files Browse the repository at this point in the history
  • Loading branch information
wtgee committed May 13, 2024
1 parent 6421433 commit 9787fe5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/panoptes/pocs/mount/ioptron/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ def __init__(self, location, mount_version=None, *args, **kwargs):

@property
def is_home(self):
""" bool: Mount home status. """
self._is_home = self.status.get('state') == MountState.AT_HOME
""" Mount home status. """
self.update_status()
return self._is_home

def initialize(self, set_rates=True, unpark=False, *arg, **kwargs):
Expand Down
1 change: 0 additions & 1 deletion src/panoptes/pocs/mount/ioptron/cem40.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ def search_for_home(self):
self.logger.info('Searching for the home position.')
self.query('search_for_home')
while self.is_home is False:
self.logger.trace(f'Searching for home position.')
time.sleep(1)
self.update_status()

Expand Down

0 comments on commit 9787fe5

Please sign in to comment.