liblouis: lou_setLogLevel

1 
1 6.14 lou_setLogLevel
1 ====================
1 
1      typedef enum
1      {
1        LOG_ALL = -2147483648,
1        LOG_DEBUG = 10000,
1        LOG_INFO = 20000,
1        LOG_WARN = 30000,
1        LOG_ERROR = 40000,
1        LOG_FATAL = 50000,
1        LOG_OFF = 2147483647
1      } logLevels;
1      void lou_setLogLevel(logLevels level);
1 
1    This function can be used to influence the amount of logging, from
1 fatal error messages only to detailed debugging messages.  Supported
1 values are 'LOG_DEBUG', 'LOG_INFO', 'LOG_WARN', 'LOG_ERROR', 'LOG_FATAL'
1 and 'LOG_OFF'.  Enabling logging at a given level also enables logging
1 at all higher levels.  Setting the level to 'LOG_OFF' disables logging.
1 The default level is 'LOG_INFO'.
1