How do I silence strace's message "[ Process PID=15733 runs in 64 bit mode. ]" ?
- by Ross Rogers
I'm using memoize.py, but strace keeps injecting the following into the program output each time a process is executed:
[ Process PID=15733 runs in 64 bit mode. ]
or
[ Process PID=16503 runs in 32 bit mode. ]
How can I silence strace such that it doesn't inject these statements into the log file? At the very least, I'd like these statements to only go into the output file that memoize.py is instructing strace to use. It's already telling strace to put its output into a specific file ithrough arguments -o /tmp/OUTFILE.
Note that strace is being called with the -f parameter to follow child processes.