X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=log.c;h=7b30497ee1226882b5e89ebe23bbefcf9198c596;hp=d6df1564126a17c049b3bed2672998a632b8a05e;hb=50bd5d259677faf87bb3408e111d0e833d7ba9b4;hpb=57790bc8c558ccf2e57b3d973c043088232628c7 diff --git a/log.c b/log.c index d6df156..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 * @@ -23,6 +23,20 @@ #include #include +/** + * @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; } + +/** @} */