[Qemu-devel] [PATCH v7 0/2] log: Make glib logging go through QEMU

Christophe Fergeau posted 2 patches 5 years, 2 months ago
Test asan passed
Test docker-clang@ubuntu passed
Test docker-mingw@fedora passed
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20190131164614.19209-1-cfergeau@redhat.com
Maintainers: Max Reitz <mreitz@redhat.com>, Fam Zheng <fam@euphon.net>, Laurent Vivier <laurent@vivier.eu>, Kevin Wolf <kwolf@redhat.com>, Markus Armbruster <armbru@redhat.com>, Eric Blake <eblake@redhat.com>, Riku Voipio <riku.voipio@iki.fi>, Paolo Bonzini <pbonzini@redhat.com>
bsd-user/main.c             |  2 ++
include/qemu/error-report.h |  3 +-
linux-user/main.c           |  2 ++
qemu-img.c                  |  2 +-
qemu-io.c                   | 14 ++++------
qemu-nbd.c                  |  2 +-
scsi/qemu-pr-helper.c       |  1 +
util/qemu-error.c           | 55 ++++++++++++++++++++++++++++++++++++-
vl.c                        |  2 +-
9 files changed, 70 insertions(+), 13 deletions(-)
[Qemu-devel] [PATCH v7 0/2] log: Make glib logging go through QEMU
Posted by Christophe Fergeau 5 years, 2 months ago
The main goal of this patch series is to make logs output by
libspice-server.so go through qemu logging infrastructure so that their
format is the same as the rest of QEMU messages (in particular,
timestamps). This is done in the second patch, the first one is a
preparation patch.

Christophe Fergeau (2):
  qemu-io: Use error_[gs]et_progname()
  log: Make glib logging go through QEMU

 bsd-user/main.c             |  2 ++
 include/qemu/error-report.h |  3 +-
 linux-user/main.c           |  2 ++
 qemu-img.c                  |  2 +-
 qemu-io.c                   | 14 ++++------
 qemu-nbd.c                  |  2 +-
 scsi/qemu-pr-helper.c       |  1 +
 util/qemu-error.c           | 55 ++++++++++++++++++++++++++++++++++++-
 vl.c                        |  2 +-
 9 files changed, 70 insertions(+), 13 deletions(-)

-- 
2.20.1


Re: [Qemu-devel] [PATCH v7 0/2] log: Make glib logging go through QEMU
Posted by Markus Armbruster 5 years ago
Uh, I totally missed this one...  my apologies!

Christophe Fergeau <cfergeau@redhat.com> writes:

> The main goal of this patch series is to make logs output by
> libspice-server.so go through qemu logging infrastructure so that their
> format is the same as the rest of QEMU messages (in particular,
> timestamps). This is done in the second patch, the first one is a
> preparation patch.

Reviewed-by: Markus Armbruster <armbru@redhat.com>

Queued for 4.1, thanks!