From: Daniel P. Berrange Date: Fri, 21 Feb 2014 17:23:52 +0000 (+0000) Subject: Add comments describing the different log sources X-Git-Tag: v1.2.2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f223b9605184b314710673f60ec99805b4284032;p=thirdparty%2Flibvirt.git Add comments describing the different log sources Signed-off-by: Daniel P. Berrange --- diff --git a/src/util/virlog.h b/src/util/virlog.h index f40082430c..6ba2daa4e7 100644 --- a/src/util/virlog.h +++ b/src/util/virlog.h @@ -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;