1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2024-12-23 21:34:54 +03:00

Add comments describing the different log sources

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
This commit is contained in:
Daniel P. Berrange 2014-02-21 17:23:52 +00:00
parent 0915053e97
commit f223b96051

View File

@ -45,11 +45,11 @@ typedef enum {
} virLogDestination;
typedef enum {
VIR_LOG_FROM_FILE,
VIR_LOG_FROM_ERROR,
VIR_LOG_FROM_AUDIT,
VIR_LOG_FROM_TRACE,
VIR_LOG_FROM_LIBRARY,
VIR_LOG_FROM_FILE, /* General debugging */
VIR_LOG_FROM_ERROR, /* Errors reported */
VIR_LOG_FROM_AUDIT, /* Audit operations */
VIR_LOG_FROM_TRACE, /* DTrace probe pointers */
VIR_LOG_FROM_LIBRARY, /* 3rd party libraries */
VIR_LOG_FROM_LAST,
} virLogSource;