| 114 | } |
| 115 | |
| 116 | void log::vmsg4(size_t section, size_t level, const char* fmt, va_list ap) |
| 117 | { |
| 118 | if (acl_do_debug((int) section, (int) level)) { |
| 119 | vmsg2(fmt, ap); |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | void log::msg6(size_t section, size_t level, const char* fname, |
| 124 | int line, const char* func, const char* fmt, ...) |
nothing calls this directly
no test coverage detected