X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=log.c;h=7b30497ee1226882b5e89ebe23bbefcf9198c596;hp=e68014cd52d52a49c4db8afa0b00b170679e50e8;hb=50bd5d259677faf87bb3408e111d0e833d7ba9b4;hpb=54fdeeefffe31d32dddaf0f3d6a99dc7b3bc2448 diff --git a/log.c b/log.c index e68014c..7b30497 100644 --- 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 * @@ -29,6 +29,14 @@ * 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; } + +/** @} */