autotest: stop echoing autopilot statustext messages back to autopilot

These are already logged on the autopilot as MSG messages (without the extra stuff we tack on.

They are also already in our .tlog because we just received them via statustext....
This commit is contained in:
Peter Barker 2023-09-13 11:38:27 +10:00 committed by Peter Barker
parent 5a0b3f7d53
commit 2319ba5e58

View File

@ -3138,7 +3138,7 @@ class AutoTest(ABC):
"""Called as each mavlink msg is received."""
# print("msg: %s" % str(msg))
if msg.get_type() == 'STATUSTEXT':
self.progress("AP: %s" % msg.text)
self.progress("AP: %s" % msg.text, send_statustext=False)
self.write_msg_to_tlog(msg)