Tools: remove log module from default autotest modules

This commit is contained in:
Pierre Kancir 2019-07-15 11:37:16 +02:00 committed by Peter Barker
parent 666e7b88d7
commit 1f9adf1f3b
1 changed files with 1 additions and 1 deletions

View File

@ -340,7 +340,7 @@ def start_MAVProxy_SITL(atype, aircraft=None, setup=False, master='tcp:127.0.0.1
aircraft = 'test.%s' % atype
cmd += ' --aircraft=%s' % aircraft
cmd += ' ' + ' '.join(options)
cmd += ' --default-modules misc,terrain,log,wp,rally,fence,param,arm,mode,rc,cmdlong,output'
cmd += ' --default-modules misc,terrain,wp,rally,fence,param,arm,mode,rc,cmdlong,output'
ret = pexpect.spawn(cmd, logfile=logfile, encoding=ENCODING, timeout=60)
ret.delaybeforesend = 0
pexpect_autoclose(ret)