diff options
author | Jiri Denemark <jdenemar@redhat.com> | 2012-08-17 14:12:51 +0200 |
---|---|---|
committer | Jiri Denemark <jdenemar@redhat.com> | 2012-08-17 21:26:53 +0200 |
commit | 395be3c2b8d8e14eb93167de003fa7d872d1547e (patch) | |
tree | a3028f0377b41518491beaf61e4857dd28ce55bb /daemon | |
parent | conf: Fix ABI stability check for spicevmc channel (diff) | |
download | libvirt-395be3c2b8d8e14eb93167de003fa7d872d1547e.tar.gz libvirt-395be3c2b8d8e14eb93167de003fa7d872d1547e.tar.bz2 libvirt-395be3c2b8d8e14eb93167de003fa7d872d1547e.zip |
docs: Enhance documentation of log_filters
Also make sure documentation in libvirtd.conf matches the one from
logging.html.
Diffstat (limited to 'daemon')
-rw-r--r-- | daemon/libvirtd.conf | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/daemon/libvirtd.conf b/daemon/libvirtd.conf index 56e880b1d..3d296cd32 100644 --- a/daemon/libvirtd.conf +++ b/daemon/libvirtd.conf @@ -291,10 +291,13 @@ # Logging filters: # A filter allows to select a different logging level for a given category # of logs -# The format for a filter is: +# The format for a filter is one of: # x:name -# where name is a match string e.g. remote or qemu -# the x prefix is the minimal level where matching messages should be logged +# x:+name +# where name is a string which is matched against source file name, +# e.g., "remote", "qemu", or "util/json", the optional "+" prefix +# tells libvirt to log stack trace for each message matching name, +# and x is the minimal level where matching messages should be logged: # 1: DEBUG # 2: INFO # 3: WARNING |