Lines Matching defs:level
70 static void ppp_logit(int level, const char *fmt, va_list args);
71 static void ppp_log_write(int level, char *buf);
429 log_packet(p, len, prefix, level)
433 int level;
435 init_pr_log(prefix, level);
436 ppp_format_packet(p, len, pr_log, &level);
494 static int llevel; /* level for logging */
497 init_pr_log(prefix, level)
499 int level;
506 llevel = level;
605 static void ppp_logit(int level, const char *fmt, va_list args) {
609 ppp_log_write(level, buf);
612 static void ppp_log_write(int level, char *buf) {
613 LWIP_UNUSED_ARG(level); /* necessary if PPPDEBUG is defined to an empty function */
615 PPPDEBUG(level, ("%s\n", buf) );
617 if (log_to_fd >= 0 && (level != LOG_DEBUG || debug)) {
668 * ppp_notice - log a notice-level message.