Lines Matching defs:level
70 static void log(int level, const char *fmt, va_list args);
71 static void log_to_stderr(int level, const char *buf);
129 idn_log_setlevel(int level) {
130 if (level >= 0)
131 log_level = level;
155 int level = atoi(s);
156 if (level >= 0)
157 log_level = level;
168 log(int level, const char *fmt, va_list args) {
173 if (log_level < level)
182 (*log_proc)(level, buf);
186 log_to_stderr(int level, const char *buf) {
190 switch (level) {
210 (void)sprintf(tmp, "LEVEL%d", level);