Monitoring log file updates from console
With JMP 17.2.0, I'm trying to monitor the output of a JSL log file from a console — (Mac OS Terminal, in this case). I'm using the tail command with the -f option to live-view the updates whenever the file is written. $ tail -f log.txtHowever, the console output never updates when new text is written to the log. The sample JSL below outputs a line of text every second: Open Log();
Clear Log();
...