qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 2/2] linux-user: Add -stracefile to log strace e


From: Peter Maydell
Subject: Re: [Qemu-devel] [PATCH 2/2] linux-user: Add -stracefile to log strace elsewhere than stderr
Date: Fri, 1 Jun 2012 01:49:26 +0100

On 31 May 2012 20:37, Richard Henderson <address@hidden> 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]