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

nng_log_get_level - get minimum level for logging messagse

Description

       The nng_log_get_level function is used to get the minimum severity to level for processing log messages.
       The intended use case is to avoid expensive operations used solely to provide debugging information in
       logs, if the logged content would merely be discarded.

Name

       nng_log_get_level - get minimum level for logging messagse

See Also

nng_log_set_facility(3), nng_log_set_level(3)

                                                   2025-04-20                               NNG_LOG_GET_LEVEL(3)

Synopsis

           #include <nng/nng.h>

           typedef enum nng_log_level {
                   NNG_LOG_NONE   = 0, // used for filters only, NNG suppresses these
                   NNG_LOG_ERR    = 3,
                   NNG_LOG_WARN   = 4,
                   NNG_LOG_NOTICE = 5,
                   NNG_LOG_INFO   = 6,
                   NNG_LOG_DEBUG  = 7
           } nng_log_level;

           nng_log_level nng_log_set_level(void);

See Also