Lines Matching refs:level

75 	int 				level;
242 isc_logmodule_t *module, int level, isc_boolean_t write_once,
335 int level = ISC_LOG_INFO;
347 lcfg->highest_level = level;
371 ISC_LOG_TOSYSLOG, level,
382 level,
704 unsigned int type, int level,
716 REQUIRE(level >= ISC_LOG_CRITICAL);
735 channel->level = level;
832 isc_logmodule_t *module, int level, const char *format, ...)
841 isc_log_doit(lctx, category, module, level, ISC_FALSE,
848 isc_logmodule_t *module, int level,
854 isc_log_doit(lctx, category, module, level, ISC_FALSE,
860 isc_logmodule_t *module, int level, const char *format, ...)
869 isc_log_doit(lctx, category, module, level, ISC_TRUE,
876 isc_logmodule_t *module, int level,
882 isc_log_doit(lctx, category, module, level, ISC_TRUE,
888 isc_logmodule_t *module, int level,
899 isc_log_doit(lctx, category, module, level, ISC_FALSE,
906 isc_logmodule_t *module, int level,
913 isc_log_doit(lctx, category, module, level, ISC_FALSE,
919 isc_logmodule_t *module, int level,
930 isc_log_doit(lctx, category, module, level, ISC_TRUE,
937 isc_logmodule_t *module, int level,
944 isc_log_doit(lctx, category, module, level, ISC_TRUE,
954 isc_log_setdebuglevel(isc_log_t *lctx, unsigned int level) {
961 lctx->debug_level = level;
963 * Close ISC_LOG_DEBUGONLY channels if level is zero.
1088 * Remember the highest logging level set by any channel in the
1093 if (lcfg->highest_level < channel->level)
1094 lcfg->highest_level = channel->level;
1095 if (channel->level == ISC_LOG_DYNAMIC)
1378 isc_log_wouldlog(isc_log_t *lctx, int level) {
1382 * messages that the debug level is not high enough to print.
1384 * If the level is (mathematically) less than or equal to the
1385 * highest_level, or if there is a dynamic channel and the level is
1386 * less than or equal to the debug level, the main loop must be
1399 return (ISC_TF(level <= lctx->logconfig->highest_level ||
1401 level <= lctx->debug_level)));
1406 isc_logmodule_t *module, int level, isc_boolean_t write_once,
1427 REQUIRE(level != ISC_LOG_DYNAMIC);
1441 if (! isc_log_wouldlog(lctx, level))
1505 if (channel->level == ISC_LOG_DYNAMIC) {
1506 if (lctx->debug_level < level)
1508 } else if (channel->level < level)
1522 if (level < ISC_LOG_CRITICAL)
1528 "level"),
1529 level);
1530 else if (level > ISC_LOG_DYNAMIC)
1533 level);
1536 "%s: ", log_level_strings[-level]);
1736 if (level > 0)
1738 else if (level < ISC_LOG_CRITICAL)
1741 syslog_level = syslog_map[-level];