logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

comedi_loglevel - change Comedilib logging properties

Authors

DavidSchleef <ds@schleef.org>
           Author.

       FrankMoriHess <fmhess@users.sourceforge.net>
           Author.

       HermanBruyninckx <Herman.Bruyninckx@mech.kuleuven.ac.be>
           Author.

       BerndPorr <tech@linux-usb-daq.co.uk>
           Author.

       IanAbbott <abbotti@mev.co.uk>
           Author.

       ÉricPiel <piel@delmic.com>
           Author.

Description

       This function affects the output of debugging and error messages from Comedilib. By increasing the log
       level loglevel, additional debugging information will be printed. Error and debugging messages are
       printed to the standard error output stream stderr.

       The default loglevel can be set by using the environment variable COMEDI_LOGLEVEL. The default log level
       is 1.

       In order to conserve resources, some debugging information is disabled by default when Comedilib is
       compiled.

       The meaning of the log levels is as follows:
       ┌──────────┬───────────────────────────────────┐
       │ LoglevelBehavior                          │
       ├──────────┼───────────────────────────────────┤
       │ 0        │ Comedilib prints nothing.         │
       ├──────────┼───────────────────────────────────┤
       │ 1        │ (default) Comedilib prints error  │
       │          │ messages when                     │
       │          │      there is a self-consistency  │
       │          │ error (i.e., an internal bug.)    │
       ├──────────┼───────────────────────────────────┤
       │ 2        │ Comedilib prints an error message │
       │          │ when an invalid                   │
       │          │      parameter is passed.         │
       ├──────────┼───────────────────────────────────┤
       │ 3        │ Comedilib prints an error message │
       │          │ whenever an                       │
       │          │      error is generated in the    │
       │          │ Comedilib library or in the C     │
       │          │ library,                          │
       │          │      when called by Comedilib.    │
       ├──────────┼───────────────────────────────────┤
       │ 4        │ Comedilib prints a lot of junk.   │
       └──────────┴───────────────────────────────────┘

Name

       comedi_loglevel - change Comedilib logging properties

Return Value

       This function returns the previous log level.

Synopsis

#include<comedilib.h>intcomedi_loglevel(intloglevel);

See Also