| 176 | } |
| 177 | |
| 178 | void log_process_msg(Severity severity, const char* process, const char* format, ...) { |
| 179 | va_list args; |
| 180 | va_start(args, format); |
| 181 | |
| 182 | vlog_process_msg(severity, process, format, args); |
| 183 | |
| 184 | va_end(args); |
| 185 | } |
| 186 | |
| 187 | void log_err(const char* func, int err, const char* format, ...) { |
| 188 | va_list args; |
no test coverage detected