]> sigrok.org Git - libsigrokdecode.git/blobdiff - log.c
GPL headers: Use correct project name.
[libsigrokdecode.git] / log.c
diff --git a/log.c b/log.c
index e68014cd52d52a49c4db8afa0b00b170679e50e8..7b30497ee1226882b5e89ebe23bbefcf9198c596 100644 (file)
--- a/log.c
+++ b/log.c
@@ -1,5 +1,5 @@
 /*
- * This file is part of the sigrok project.
+ * This file is part of the libsigrokdecode project.
  *
  * Copyright (C) 2011-2012 Uwe Hermann <uwe@hermann-uwe.de>
  *
  * 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. */
 
@@ -283,3 +291,5 @@ SRD_PRIV int srd_err(const char *format, ...)
 
        return ret;
 }
+
+/** @} */