From: Uwe Hermann Date: Wed, 8 Feb 2012 21:08:55 +0000 (+0100) Subject: sr: Doxygen comments for loglevels. X-Git-Tag: libsigrok-0.1.0~142 X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=12f3e8741b5ae651569ca65b94f22a4dc154da7a;p=libsigrok.git sr: Doxygen comments for loglevels. --- diff --git a/sigrok.h.in b/sigrok.h.in index a767dc71..5e42011c 100644 --- a/sigrok.h.in +++ b/sigrok.h.in @@ -66,12 +66,12 @@ extern "C" { #define SR_HZ_TO_NS(n) (1000000000 / (n)) /* libsigrok loglevels. */ -#define SR_LOG_NONE 0 -#define SR_LOG_ERR 1 -#define SR_LOG_WARN 2 -#define SR_LOG_INFO 3 -#define SR_LOG_DBG 4 -#define SR_LOG_SPEW 5 +#define SR_LOG_NONE 0 /**< Output no messages at all. */ +#define SR_LOG_ERR 1 /**< Output error messages. */ +#define SR_LOG_WARN 2 /**< Output warnings. */ +#define SR_LOG_INFO 3 /**< Output informational messages. */ +#define SR_LOG_DBG 4 /**< Output debug messages. */ +#define SR_LOG_SPEW 5 /**< Output very noisy debug messages. */ /* * Use SR_API to mark public API symbols, and SR_PRIV for private symbols.