On 31 May 2012 20:37, Richard Henderson <r...@twiddle.net> wrote: > void gemu_log(const char *fmt, ...) > { > va_list ap; > > va_start(ap, fmt); > - vfprintf(stderr, fmt, ap); > + vfprintf(strace_log_file, fmt, ap); > va_end(ap); > }
gemu_log() is used for more than just strace output... are we happy for the various other random error messages to go to the "strace log" file too? -- PMM