From: Eric Blake
Date: Mon, 12 Mar 2012 21:34:55 +0000 (-0600)
Subject: docs: fix usage example on setting log levels
X-Git-Tag: v0.9.11-rc1~80
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=98deac7dcc4c1cb78deefbe2e039daa5a63e9525;p=thirdparty%2Flibvirt.git
docs: fix usage example on setting log levels
Reported by Michael S. Tsirkin.
* docs/logging.html.in (log_examples): Use correct libvirtd.conf
syntax.
---
diff --git a/docs/logging.html.in b/docs/logging.html.in
index ebacdacacc..22b5422b10 100644
--- a/docs/logging.html.in
+++ b/docs/logging.html.in
@@ -170,8 +170,8 @@ export LIBVIRT_LOG_OUTPUTS="1:file:virsh.log"
put the correct breakpoints when running under a debugger.
To activate full debug of the libvirt entry points, utility
functions and the QEmu/KVM driver, set:
- log_filters=1:libvirt 1:util 1:qemu
-log_output=1:file:/var/log/libvirt/libvirtd.log
+ log_filters="1:libvirt 1:util 1:qemu"
+log_outputs="1:file:/var/log/libvirt/libvirtd.log"
in libvirtd.conf and restart the daemon will allow to
gather a copious amount of debugging traces for the operations done
in those areas.