Hello everyone,
I have a project which is working on an unattended Mac running pd-extended. All the patches I use have a reporting feature (they print out their name on the pd window output when they enter and when they exit, together with a timestamp). Is there any way I can make pd save the output on a file? I should be able to schedule it automatically at the end of each day. Any thoughts/ideas will be appreciated!
Cheers
On 2010-06-16 16:55, Ignacio Lois wrote:
Hello everyone,
I have a project which is working on an unattended Mac running pd-extended. All the patches I use have a reporting feature (they print out their name on the pd window output when they enter and when they exit, together with a timestamp). Is there any way I can make pd save the output on a file? I should be able to schedule it automatically at the end of each day. Any thoughts/ideas will be appreciated!
the simplest solution is to run Pd from the cmdline with the "-stderr" flag and redirect the stderr to a file.
something like:
$ /Applications/Pd.app/Contents/Resources/bin/pd -stderr 2>/Users/me/pd.log
mfgasdr IOhannes