Lines Matching defs:level
71 lg_lvl_t level;
164 return p->level;
170 ** lg_lvl2syslog (level)
172 lg_lvl_t lg_lvl2syslog (lg_lvl_t level)
177 if ( level == p->level )
204 ** lg_lvl2str (level)
206 const char *lg_lvl2str (lg_lvl_t level)
210 if ( level < LG_DEBUG )
214 if ( level == p->level )
346 ** lg_args (level, argc, argv[])
348 ** with priority level
351 void lg_args (lg_lvl_t level, int argc, char * const argv[])
362 lg_mesg (level, "------------------------------------------------------------");
364 lg_mesg (level, "");
366 lg_mesg (level, "running%s ", cmdline);
371 ** lg_mesg (level, fmt, ...)
374 ** all messages written with an level greater than LOG_ERR.
423 if ( fmt != format ) /* level is not in fmt string */
443 int level;
453 level = lg_str2lvl (levelstr);
454 newlevelstr = lg_lvl2str (level+1);
455 dbg_val4 ("base level = %s(%d) newlevel = %s(%d)\n", levelstr, level, newlevelstr, level+1);