Change the tail command for capturing the logs on deployment to check the file every second instead of continuously to avoid the 100% CPU time problem from artf3524

This commit is contained in:
Brad Miller
2014-09-06 18:41:05 -04:00
parent 410b739c23
commit 27ecd35834
2 changed files with 2 additions and 2 deletions

View File

@@ -46,7 +46,7 @@
username="${username}"
password="${password}"
trust="true"
command="tail -F -s 0 -n 0 ${deploy.log.file}"/>
command="tail -F -n 0 ${deploy.log.file}"/>
</target>
<target name="kill-program" depends="get-target-ip" description="Kill the currently running FRC program">