Skip to content

Commit

Permalink
move launch home to debug not info
Browse files Browse the repository at this point in the history
  • Loading branch information
misko committed Dec 23, 2024
1 parent 889ad51 commit 35e922e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spf/mavlink/mavlink_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,7 @@ def process_messages(self):
def handle_HOME_POSITION(self, msg):
# HOME_POSITION message fields are in 1e7 scaled integers
self.launch_home = np.array([msg.longitude / 1e7, msg.latitude / 1e7])
logging.info(f"Launch home position set to: {self.launch_home}")
logging.debug(f"Launch home position set to: {self.launch_home}")

def handle_NAV_CONTROLLER_OUTPUT(self, msg):
# breakpoint()
Expand Down

0 comments on commit 35e922e

Please sign in to comment.