]> sigrok.org Git - libsigrokdecode.git/blobdiff - log.c
configure.ac: Look for python-config-3.x besides python3.x-config.
[libsigrokdecode.git] / log.c
diff --git a/log.c b/log.c
index d6df1564126a17c049b3bed2672998a632b8a05e..95e3535723c0319f699b50558629ddc48fba0023 100644 (file)
--- a/log.c
+++ b/log.c
 #include <stdarg.h>
 #include <stdio.h>
 
+/**
+ * @file
+ *
+ * Controlling the libsigrokdecode message logging functionality.
+ */
+
+/**
+ * @defgroup grp_logging Logging
+ *
+ * Controlling the libsigrokdecode message logging functionality.
+ *
+ * @{
+ */
+
 /* Currently selected libsigrokdecode loglevel. Default: SRD_LOG_WARN. */
 static int srd_loglevel = SRD_LOG_WARN; /* Show errors+warnings per default. */
 
@@ -277,3 +291,5 @@ SRD_PRIV int srd_err(const char *format, ...)
 
        return ret;
 }
+
+/** @} */