diff options
author | Daniel P. Berrange <berrange@redhat.com> | 2010-06-07 15:42:31 +0100 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2010-10-01 10:12:43 -0300 |
commit | 39eaab9ac2a82f5370758e8aeb8b7196f34fdabf (patch) | |
tree | a029d0fe781de3f145cfa9d9ec766ad6692e9a99 /qemu-config.c | |
parent | 212b6008686369b288a2b71e4f1b25f07d854763 (diff) |
Add option to turn on JSON pretty printing in monitor
Expaned '-mon' arg to allow a 'pretty=on' flag. This makes the
monitor pretty print its replies to easy human debugging / reading
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'qemu-config.c')
-rw-r--r-- | qemu-config.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/qemu-config.c b/qemu-config.c index e3b746cc2..6052a289e 100644 --- a/qemu-config.c +++ b/qemu-config.c @@ -283,6 +283,9 @@ static QemuOptsList qemu_mon_opts = { },{ .name = "default", .type = QEMU_OPT_BOOL, + },{ + .name = "pretty", + .type = QEMU_OPT_BOOL, }, { /* end of list */ } }, |