From 013a29424c9a1e4a74a108bbc117fef5581abb41 Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Fri, 13 Nov 2015 13:16:27 +0100 Subject: qemu-log: introduce qemu_log_separate In some cases, the same message is printed both on stderr and in the log. Avoid duplicate output in the default case where stderr _is_ the log, and standardize this to stderr+log where it used to use stdio+log. Signed-off-by: Paolo Bonzini --- linux-user/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'linux-user') diff --git a/linux-user/main.c b/linux-user/main.c index 8acfe0fdf4..a04e91eb76 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -1472,8 +1472,8 @@ do { \ CPUState *cs = ENV_GET_CPU(env); \ fprintf(stderr, fmt , ## __VA_ARGS__); \ cpu_dump_state(cs, stderr, fprintf, 0); \ - qemu_log(fmt, ## __VA_ARGS__); \ - if (qemu_log_enabled()) { \ + if (qemu_log_separate()) { \ + qemu_log(fmt, ## __VA_ARGS__); \ log_cpu_state(cs, 0); \ } \ } while (0) -- cgit v1.2.1