summaryrefslogtreecommitdiffstats
path: root/qemu-options.hx
diff options
context:
space:
mode:
authorMarkus Armbruster2019-10-10 10:15:08 +0200
committerMarkus Armbruster2019-12-18 08:36:15 +0100
commitdeda497b846addcc6841274a7ac17e13d3eb146c (patch)
tree6871ad500e565b3e350a32420c3789ecfd4688f7 /qemu-options.hx
parentMerge remote-tracking branch 'remotes/huth-gitlab/tags/pull-request-2019-12-1... (diff)
downloadqemu-deda497b846addcc6841274a7ac17e13d3eb146c.tar.gz
qemu-deda497b846addcc6841274a7ac17e13d3eb146c.tar.xz
qemu-deda497b846addcc6841274a7ac17e13d3eb146c.zip
error: Fix -msg timestamp default
-msg parameter "timestamp" defaults to "off" if you don't specify msg, and to "on" if you do. Messed up right in commit 5e2ac51917 "add timestamp to error_report()". Mostly harmless, because "timestamp" is the only parameter, so "if you do" is "-msg ''", which nobody does. Change the default to "off" no matter what. While there, rename enable_timestamp_msg to error_with_timestamp, and polish documentation. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20191010081508.8978-1-armbru@redhat.com>
Diffstat (limited to 'qemu-options.hx')
-rw-r--r--qemu-options.hx10
1 files changed, 7 insertions, 3 deletions
diff --git a/qemu-options.hx b/qemu-options.hx
index c63e794b64..b2cb1debe6 100644
--- a/qemu-options.hx
+++ b/qemu-options.hx
@@ -4167,13 +4167,17 @@ DEF("no-kvm", 0, QEMU_OPTION_no_kvm, "", QEMU_ARCH_I386)
DEF("msg", HAS_ARG, QEMU_OPTION_msg,
"-msg timestamp[=on|off]\n"
- " change the format of messages\n"
- " on|off controls leading timestamps (default:on)\n",
+ " control error message format\n"
+ " timestamp=on enables timestamps (default: off)\n",
QEMU_ARCH_ALL)
STEXI
@item -msg timestamp[=on|off]
@findex -msg
-prepend a timestamp to each log message.(default:on)
+Control error message format.
+@table @option
+@item timestamp=on|off
+Prefix messages with a timestamp. Default is off.
+@end table
ETEXI
DEF("dump-vmstate", HAS_ARG, QEMU_OPTION_dump_vmstate,