| 701 | } |
| 702 | |
| 703 | static int log_loglevel(const ap_errorlog_info *info, const char *arg, |
| 704 | char *buf, int buflen) |
| 705 | { |
| 706 | if (info->level < 0) |
| 707 | return 0; |
| 708 | else |
| 709 | return cpystrn(buf, priorities[info->level].t_name, buflen); |
| 710 | } |
| 711 | |
| 712 | static int log_log_id(const ap_errorlog_info *info, const char *arg, |
| 713 | char *buf, int buflen) |
no test coverage detected